X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=92dd4145dfb83eba19982f6af2dfa89bb6c329e7;hp=83cb54fa4af3b6552e6cabb86ac587970de25d3e;hb=8328ba1e87429b4bdff9c7a686ea39c5c6a0d048;hpb=34aa2a2ab415ddb372b9f3d9ad68a0467f270621 diff --git a/grml-autoconfig b/grml-autoconfig index 83cb54f..92dd414 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -4,7 +4,6 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Sam Nov 03 17:22:09 CET 2007 [mika] ################################################################################ # http://wiki.debian.org/LSBInitScripts => @@ -77,16 +76,16 @@ if [ -z "$INSTALLED" -a -e /live/cow ] ; then fi if [ -z "$SPLASH" ] ; then - stage=5 - rundebugshell + stage=5 + rundebugshell fi if [ -z "$BOOTDEBUG" ] ; then - einfo "Setting kernel ring buffer to level 2." - echo "2" > /proc/sys/kernel/printk ; eend $? + einfo "Setting kernel ring buffer to level 2." + echo "2" > /proc/sys/kernel/printk ; eend $? else - einfo "Setting kernel ring buffer to level 6. Adjust manually via running dmesg -n \$VALUE." - echo "6" > /proc/sys/kernel/printk ; eend $? + einfo "Setting kernel ring buffer to level 6. Adjust manually via running dmesg -n \$VALUE." + echo "6" > /proc/sys/kernel/printk ; eend $? fi checkvalue $CONFIG_SYSLOG && config_syslog @@ -111,6 +110,8 @@ checkvalue $CONFIG_LOG && config_log checkvalue $CONFIG_SWSPEAK && config_swspeak +checkvalue $CONFIG_HWSPEAK && config_hwspeak + checkvalue $CONFIG_FWTIMEOUT && config_fwtimeout checkvalue $CONFIG_FIX_PASSWD && config_fix_passwd @@ -262,6 +263,8 @@ checkvalue $CONFIG_IPW3945 && config_ipw3945 checkvalue $CONFIG_AUTOMOUNT && config_automount +checkvalue $CONFIG_MYPATH && config_mypath + checkvalue $CONFIG_DISTCC && config_distcc checkvalue $CONFIG_DISTRI && config_distri @@ -282,15 +285,15 @@ checkvalue $CONFIG_XSTARTUP && config_x_startup # {{{ debug if [ -z "$SPLASH" ] ; then - stage=6 - rundebugshell + stage=6 + rundebugshell fi if [ -n "$BOOTDEBUG" ] ; then - CMDLINE="$(cat /proc/cmdline)" - [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" - einfo "Bootoption debug detected. Printing kernel command line:" - echo "$CMDLINE" + CMDLINE="$(cat /proc/cmdline)" + [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" + einfo "Bootoption debug detected. Printing kernel command line:" + echo "$CMDLINE" fi # }}}