Merge "Enable extlinux support for (non-Ubuntu) Debian platforms"

This commit is contained in:
Jenkins 2014-03-13 03:34:18 +00:00 committed by Gerrit Code Review
commit 12463106c8

View File

@ -39,6 +39,10 @@ function install_extlinux {
elif [ -f /etc/debian_version ]; then
kernel=$(ls -1rv /boot/vmlinuz*generic | head -1)
initrd=$(ls -1rv /boot/initrd*generic | head -1)
# in case files with "generic" suffix were not found, fall back to default
kernel=${kernel:-$(ls -1rv /boot/vmlinuz* | head -1)}
initrd=${initrd:-$(ls -1rv /boot/initrd* | head -1)}
else
echo "Unable to find kernel and initram"
exit 1