X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=appliance%2Flibguestfs-supermin-helper.in;h=a096ea42eb75f308b039526ddd9a60fc35120d36;hp=2afd0cfa080481304e1626021c3afb3dd5fe4378;hb=2447695a8dfb67a883c91b43f7b931573e1d3908;hpb=d2c0ee0ff7a9afdcdc1605dd464760f98d1b57d7 diff --git a/appliance/libguestfs-supermin-helper.in b/appliance/libguestfs-supermin-helper.in index 2afd0cf..a096ea4 100755 --- a/appliance/libguestfs-supermin-helper.in +++ b/appliance/libguestfs-supermin-helper.in @@ -33,15 +33,19 @@ initrd="$3" # Look for the most recent kernel named vmlinuz-*.* which has a # corresponding directory in /lib/modules/. If the architecture is x86, look # for any x86 kernel. +# +# RHEL 5 didn't append the arch to the kernel name, so look for kernels +# without arch second. arch=$(echo "@host_cpu@" | sed 's/^i.86$/i?86/') -for f in $(ls -1vr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen); do +kernels=$(ls -1vr /boot/vmlinuz-*.$arch* 2>/dev/null | grep -v xen; ls -1vr /boot/vmlinuz-* 2>/dev/null | grep -v xen) +for f in $kernels; do b=$(basename "$f") b=$(echo "$b" | sed 's,vmlinuz-,,') modpath="/lib/modules/$b" if [ -d "$modpath" ]; then - ln -sf "$f" "$kernel" - break + ln -sf "$f" "$kernel" + break fi modpath= done