X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=fdeb518a2f26f33d66224b38cedf7a1cba300228;hp=9505e22ef7d350926fe24b37ce0a3e4c9004aa55;hb=9c5890ba9edbbdd0c6229ab2a2d68e3dbf32bc64;hpb=493dfc88f8fe5fd540fb08bb5750dc6aa95aa9d9 diff --git a/grml-autoconfig b/grml-autoconfig index 9505e22..fdeb518 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: Fre Aug 04 12:13:13 CEST 2006 [mika] +# Latest change: Mon Apr 16 19:34:17 CEST 2007 [mika] ################################################################################ # http://wiki.debian.org/LSBInitScripts => @@ -78,6 +78,15 @@ else 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 +fi + [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|">/dev/tty7 checkvalue $CONFIG_LANGUAGE && config_language @@ -102,6 +111,8 @@ checkvalue $CONFIG_KERNEL && config_kernel checkvalue $CONFIG_VMWARE && config_vmware +checkvalue $CONFIG_QEMU && config_qemu + checkvalue $CONFIG_SMALL && config_small checkvalue $CONFIG_LD_MOD && config_ld_mod @@ -116,6 +127,8 @@ checkvalue $CONFIG_ENVIRONMENT && config_environment checkvalue $CONFIG_SWRAID && config_swraid +checkvalue $CONFIG_LVM && config_lvm + # No kernel messages while probing modules echo "0" > /proc/sys/kernel/printk @@ -191,6 +204,8 @@ checkvalue $CONFIG_MYCONFIG && config_myconfig checkvalue $CONFIG_DEBS && config_debs +checkvalue $CONFIG_SCRIPTS && config_scripts + [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty7 checkvalue $CONFIG_CDROM_SCRIPTS && config_cdrom_scripts @@ -235,16 +250,22 @@ checkvalue $CONFIG_CREATE_MNT_DIRS && create_mnt_dirs checkvalue $CONFIG_915RESOLUTION && config_915resolution +checkvalue $CONFIG_IPW3945 && config_ipw3945 + checkvalue $CONFIG_AUTOMOUNT && config_automount checkvalue $CONFIG_DISTCC && config_distcc +checkvalue $CONFIG_DISTRI && config_distri + checkvalue $CONFIG_BLANKING && config_blanking [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||||">/dev/tty7 checkvalue $CONFIG_GRML2HD && config_grml2hd +checkvalue $CONFIG_DEBOOTSTRAP && config_debootstrap + checkvalue $CONFIG_XSTARTUP && config_x_startup # }}}