From df8e958021db5725f1e9ca59fcae06803e629f1d Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Thu, 6 Mar 2008 03:40:42 +0000 Subject: Don't append 'quiet' kernel parameter in rescue modes --- helpers/lh_binary_syslinux | 10 +++++----- 1 file 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) -- cgit v1.0