Warn when using syslinux with a non-FAT LH_BINARY_FILESYSTEM.

This commit is contained in:
Chris Lamb 2008-09-07 15:41:36 +01:00 committed by Daniel Baumann
parent 8d373e005b
commit f5fc8b9c9f
1 changed files with 12 additions and 0 deletions

View File

@ -785,4 +785,16 @@ Check_defaults ()
Echo_warning "are re-used when integrating the Debian Installer."
fi
fi
if [ "${LH_BOOTLOADER}" = "syslinux" ]
then
case "${LH_BINARY_FILESYSTEM}" in
fat*)
;;
*)
Echo_warning "You have selected values of LH_BOOTLOADER and LH_BINARY_FILESYSTEM"
Echo_warning "which are incompatible - syslinux only supports FAT filesystems."
;;
esac
fi
}