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 2020-07-25 17:29:23 +02:00 committed by Daniel Molkentin
parent 05ce5c41b6
commit fa1b98e4ea
1 changed files with 2 additions and 2 deletions

View File

@ -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*)