diff options
author | Daniel Baumann <daniel@debian.org> | 2010-02-01 09:09:55 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:03 +0100 |
commit | aa2c9f94da106dcb175453c5eedf09b7be532348 (patch) | |
tree | 604a790700f585f765d21654dc55b26f861370ac | |
parent | 77437a361ab13f1d12f57fe1f80fc142b75ce321 (diff) | |
download | vyos-live-build-aa2c9f94da106dcb175453c5eedf09b7be532348.tar.gz vyos-live-build-aa2c9f94da106dcb175453c5eedf09b7be532348.zip |
Adding support for gfxboot.
-rwxr-xr-x | helpers/lh_binary_syslinux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index ee1d961f1..ba7f9d530 100755 --- a/helpers/lh_binary_syslinux +++ b/helpers/lh_binary_syslinux @@ -199,7 +199,7 @@ Copy_syslinux_templates () case "${LH_SYSLINUX_MENU}" in gfxboot) - # to be implemented + MENUMODULE="gfxboot.c32" ;; menu) @@ -277,7 +277,7 @@ Copy_syslinux_templates () rm -f ${SCREEN_PATH}/*.install* fi - if [ "${LH_SYSLINUX_MENU}" = "true" ] + if [ "${LH_SYSLINUX_MENU}" != "false" ] then rm -f ${DATA_PATH}/boot.txt fi |