X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=a53d2c55c2607e5004c9a902c29daf515135623f;hp=04625a93abd65e2f43c354485096deef4e4cc9a6;hb=362b637609257e6e1c607eaa13875bdcc6aee014;hpb=f44d17af4512efef4f192722a2295ac401252074 diff --git a/grml-autoconfig b/grml-autoconfig index 04625a9..a53d2c5 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: Mit Jul 25 19:59:07 CEST 2007 [mika] ################################################################################ # http://wiki.debian.org/LSBInitScripts => @@ -54,39 +53,41 @@ mount_pts mount_sys # }}} -# {{{ Read in boot parameters -CMDLINE="$(cat /proc/cmdline)" -[ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/* | tr '\n' ' ')" -# }}} - # {{{ main grml-autoconfig checkvalue $CONFIG_DEBUG && config_debug SPLASH='' -if checkbootparam "textsplash" || checkbootparam "tsplash"; then +if checkbootparam 'textsplash' || checkbootparam 'tsplash'; then SPLASH=1 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 "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 -if checkbootparam "forensic" ; then - eerror "Bootopion forensic found. Important notice!" - eerror " Do *not* boot with something like 'grml forensic ...' but with 'forensic ...' instead!" - eerror " To avoid damage to your system a debugshell will be started after a delay of 10 seconds." ; eend 1 - eerror " If you want to continue booting just exit the shell, but think about what you are doing!" ; eend 1 - sleep 10 - rundebugshell +checkvalue $CONFIG_SYSLOG && config_syslog + +if checkbootparam 'forensic' ; then + ewarn "Bootopion forensic found. Important notice:" ; eend 0 + ewarn " Do *NOT* boot with something like 'grml forensic ...' but always use 'forensic ...' instead!" ; eend 0 fi if [ -n "$SPLASH" ] ; then @@ -100,6 +101,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 @@ -165,10 +168,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 @@ -179,8 +178,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 @@ -193,8 +190,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 @@ -205,15 +200,17 @@ checkvalue $CONFIG_EXTRACT && config_extract checkvalue $CONFIG_HOMEDIR && config_homedir -checkvalue $CONFIG_MYCONFIG && config_myconfig +checkvalue $CONFIG_FINDDCSDIR && config_finddcsdir checkvalue $CONFIG_DEBS && config_debs checkvalue $CONFIG_SCRIPTS && config_scripts -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty14 +checkvalue $CONFIG_CONFIG && config_config -checkvalue $CONFIG_CDROM_SCRIPTS && config_cdrom_scripts +checkvalue $CONFIG_PARTCONF && config_partconf + +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty14 # device symlinks {{{ [ -r /mnt/floppy ] || mkdir /mnt/floppy @@ -257,7 +254,7 @@ checkvalue $CONFIG_915RESOLUTION && config_915resolution checkvalue $CONFIG_IPW3945 && config_ipw3945 -checkvalue $CONFIG_AUTOMOUNT && config_automount +checkvalue $CONFIG_MYPATH && config_mypath checkvalue $CONFIG_DISTCC && config_distcc @@ -270,6 +267,8 @@ if [ -n "$SPLASH" ] ; then chvt 1 fi +checkvalue $CONFIG_TOHD && config_tohd + checkvalue $CONFIG_GRML2HD && config_grml2hd checkvalue $CONFIG_DEBOOTSTRAP && config_debootstrap @@ -279,15 +278,19 @@ 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" + # set only if not already set + if [ -z "$CMDLINE" ] ; then + CMDLINE="$(cat /proc/cmdline)" + [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" + [ -d /live/image/bootparams/ ] && CMDLINE="$CMDLINE $(cat /live/image/bootparams/*)" + fi + einfo "Bootoption debug detected. Printing kernel command line:" + echo "$CMDLINE" fi # }}}