summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_syslinux
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-03-06 03:40:42 +0000
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:01:44 +0100
commitdf8e958021db5725f1e9ca59fcae06803e629f1d (patch)
tree1a36d831f9768310c2c477cf65d43c2a2a925f90 /helpers/lh_binary_syslinux
parentf1cb2b04328e001ce25128ffc1c89764c7bac536 (diff)
downloadlive-build-df8e958021db5725f1e9ca59fcae06803e629f1d.zip
live-build-df8e958021db5725f1e9ca59fcae06803e629f1d.tar.gz
Don't append 'quiet' kernel parameter in rescue modes
Diffstat (limited to 'helpers/lh_binary_syslinux')
-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)