diff options
-rwxr-xr-x | helpers/lh_binary_syslinux | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index 813084c97..67ba35bc4 100755 --- a/helpers/lh_binary_syslinux +++ b/helpers/lh_binary_syslinux @@ -596,8 +596,13 @@ then done fi -# Adding syslinux hardcoded default label entry -Syslinux_live_entry "linux" "" "${DEFAULT_KERNEL}" "${DEFAULT_INITRD}" +# Only needed for non-vesamenu, non-gfxboot syslinux +case "${LH_SYSLINUX_MENU}" in + disabled|menu) + # Adding syslinux hardcoded default label entry + Syslinux_live_entry "linux" "" "${DEFAULT_KERNEL}" "${DEFAULT_INITRD}" + ;; +esac # Assembling debian-installer configuration if [ "${LH_DEBIAN_INSTALLER}" != "disabled" ] |