diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-03-06 03:40:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-03-09 09:56:19 +0100 |
commit | 206f3b3f21d8877d7792a2a9a9aa9390182b6f95 (patch) | |
tree | 1a36d831f9768310c2c477cf65d43c2a2a925f90 | |
parent | 8a19cbfff1b9dac2bcb16628c8d1a6d905292d2c (diff) | |
download | vyos-live-build-206f3b3f21d8877d7792a2a9a9aa9390182b6f95.tar.gz vyos-live-build-206f3b3f21d8877d7792a2a9a9aa9390182b6f95.zip |
Don't append 'quiet' kernel parameter in rescue modes
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-x | helpers/lh_binary_syslinux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index ba0d572f8..d8aab00ec 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) |