summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhelpers/lh_binary_syslinux10
1 files changed, 5 insertions, 5 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux
index ba0d572..d8aab00 100755
--- a/helpers/lh_binary_syslinux
+++ b/helpers/lh_binary_syslinux
@@ -136,21 +136,21 @@ Syslinux_install_entry ()
INITRD="${3}"
APPEND="${4}"
- # Boot in quiet mode
- if [ "${LH_DISTRIBUTION}" != "etch" ] && [ "${LABEL}" != "rescue" ] && [ "${LABEL}" != "rescuegui" ]
+ # Boot in quiet mode where appropriate
+ if [ "${LH_DISTRIBUTION}" != "etch" ]
then
- APPEND="${APPEND} quiet"
+ QAPPEND="quiet"
fi
for TYPE in Install Expert Rescue Auto
do
case "${TYPE}" in
Install)
- TAPPEND="${APPEND}"
+ TAPPEND="${APPEND} ${QAPPEND}"
;;
Expert)
- TAPPEND="priority=low ${APPEND}"
+ TAPPEND="priority=low ${APPEND} ${QAPPEND}"
;;
Rescue)