Browse Source

mkinitrd-dracut.sh: use vmlinux regex for ppc*, vmlinuz for i686

Previously this would not catch ppc64le, now it does; same with
i686.
master
q66 5 years ago committed by Daniel Molkentin
parent
commit
fa1b98e4ea
  1. 4
      mkinitrd-dracut.sh

4
mkinitrd-dracut.sh

@ -57,10 +57,10 @@ default_kernel_images() { @@ -57,10 +57,10 @@ default_kernel_images() {
s390|s390x)
regex='image'
;;
ppc|ppc64)
ppc*)
regex='vmlinux'
;;
i386|x86_64)
i?86|x86_64)
regex='vmlinuz'
;;
arm*)

Loading…
Cancel
Save