Fix kernel/initrd extraction for SUSE based distros
Change-Id: Ib4c8ddfe3592242ce684676e9dcb6428466ca66e
This commit is contained in:
parent
f8081bbd83
commit
de2becc9ff
@ -47,6 +47,9 @@ if [ -f $TARGET_ROOT/etc/redhat-release ]; then
|
||||
elif [ -f $TARGET_ROOT/etc/debian_version ]; then
|
||||
KERNEL=$(basename `ls -1rv $BOOTDIR/vmlinuz*generic | head -1`)
|
||||
RAMDISK=$(basename `ls -1rv $BOOTDIR/initrd*generic | head -1`)
|
||||
elif [ -f $TARGET_ROOT/etc/SuSE-release ]; then
|
||||
KERNEL=$(basename `ls -1rv $BOOTDIR/vmlinuz`)
|
||||
RAMDISK=$(basename `ls -1rv $BOOTDIR/initrd`)
|
||||
else
|
||||
echo "ERROR: Unable to detect operating system"
|
||||
exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user