X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=b6a5f919133dd2efc6f2a5687bc59d05a25081a3;hp=68961f259ab7b4d23f11e4a66ad4eff9c05d9c8f;hb=9282299a27466284fe872961cc58a587bd038e4b;hpb=c787948c5c204d1e02cb87c6d2f556939e3ffc4f diff --git a/grml-autoconfig b/grml-autoconfig index 68961f2..b6a5f91 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -4,7 +4,7 @@ # 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: Mon Sep 17 17:39:29 CEST 2007 [mika] +# Latest change: Son Jän 20 19:44:11 CET 2008 [mika] ################################################################################ # http://wiki.debian.org/LSBInitScripts => @@ -70,25 +70,27 @@ fi # update /etc/mtab if running in live-initramfs mode: if [ -z "$INSTALLED" -a -e /live/cow ] ; then if ! grep -q rootfs /etc/mtab ; then - for i in rootfs sysfs proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do - grep $i /proc/mounts >> /etc/mtab + for i in rootfs "none /sys sysfs" proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do + grep $i /proc/mounts | grep -v /dev/.static >> /etc/mtab done fi 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 + if checkbootparam "forensic" ; then eerror "Bootopion forensic found. Important notice!" eerror " Do *not* boot with something like 'grml forensic ...' but with 'forensic ...' instead!" @@ -174,10 +176,6 @@ checkvalue $CONFIG_ACPI_APM && config_acpi_apm checkvalue $CONFIG_PCMCIA && config_pcmcia -# {{{ Read in what hwsetup has found -[ -f /etc/sysconfig/grml ] && . /etc/sysconfig/grml -# }}} - checkvalue $CONFIG_KEYBOARD && config_keyboard [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||">/dev/tty14 @@ -188,8 +186,6 @@ checkvalue $CONFIG_INTERACTIVE && config_interactive checkvalue $CONFIG_AGP && config_agp -[ -f /etc/sysconfig/grml ] && . /etc/sysconfig/grml - checkvalue $CONFIG_AUTOMOUNTER && config_automounter checkvalue $CONFIG_DMA && config_dma @@ -202,8 +198,6 @@ checkvalue $CONFIG_DHCP && config_dhcp [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty14 -checkvalue $CONFIG_SYSLOG && config_syslog - checkvalue $CONFIG_CPU && config_cpu checkvalue $CONFIG_SSH && config_ssh @@ -268,6 +262,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 @@ -288,15 +284,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 # }}}