X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=2c97dbcc6298de58c61bbbd71e1403969912c36e;hp=efe0061b59082739936448849064803e88d441f8;hb=39eccfccd198ed1b2b1c6d29f9328b6dfbb8000b;hpb=37eee4a042ff38046cb7594420a03af5067efa8d diff --git a/grml-autoconfig b/grml-autoconfig index efe0061..2c97dbc 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -56,6 +56,7 @@ mount_sys # {{{ Read in boot parameters CMDLINE="$(cat /proc/cmdline)" [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/* | tr '\n' ' ')" +[ -d /live/image/bootparams/ ] && CMDLINE="$CMDLINE $(cat /live/image/bootparams/* | tr '\n' ' ')" # }}} # {{{ main grml-autoconfig @@ -91,12 +92,8 @@ 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!" - 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 + 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 @@ -294,6 +291,7 @@ fi if [ -n "$BOOTDEBUG" ] ; then CMDLINE="$(cat /proc/cmdline)" [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" + [ -d /live/image/bootparams/ ] && CMDLINE="$CMDLINE $(cat /live/image/bootparams/*)" einfo "Bootoption debug detected. Printing kernel command line:" echo "$CMDLINE" fi