Adding check for currently not supported bootloader/image-type combinations.

This commit is contained in:
Daniel Baumann 2009-01-14 20:30:21 +01:00
parent bebfa492f7
commit b9f5121f53
1 changed files with 13 additions and 0 deletions

View File

@ -821,4 +821,17 @@ Check_defaults ()
;;
esac
fi
if [ "${LH_BINARY_IMAGES}" = "usb-hdd" ]
then
# grub or yaboot + usb-hdd
case "${LH_BOOTLOADER}" in
grub|yaboot)
Echo_warning "You have selected a combination of bootloader and image type that is currently"
Echo_warning "not supported by live-helper. Please use either another bootloader or a"
Echo_warning "different image type."
exit 1
;;
esac
fi
}