X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=b5556d1271b030bed79f87ae33d6d50ba31824fd;hp=2c97dbcc6298de58c61bbbd71e1403969912c36e;hb=bb27dbac893ba8575a593e9f5dffc3f65f3c6e76;hpb=39eccfccd198ed1b2b1c6d29f9328b6dfbb8000b diff --git a/grml-autoconfig b/grml-autoconfig index 2c97dbc..b5556d1 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -53,17 +53,11 @@ mount_pts 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 checkvalue $CONFIG_DEBUG && config_debug SPLASH='' -if checkbootparam "textsplash" || checkbootparam "tsplash"; then +if checkbootparam 'textsplash' || checkbootparam 'tsplash'; then SPLASH=1 fi @@ -91,7 +85,7 @@ fi checkvalue $CONFIG_SYSLOG && config_syslog -if checkbootparam "forensic" ; then +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 @@ -206,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_PARTCONF && config_partconf -checkvalue $CONFIG_CDROM_SCRIPTS && config_cdrom_scripts +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty14 # device symlinks {{{ [ -r /mnt/floppy ] || mkdir /mnt/floppy @@ -236,6 +232,8 @@ checkvalue $CONFIG_SERVICES && config_services checkvalue $CONFIG_NETCONFIG && config_netconfig +checkvalue $CONFIG_NETSCRIPT && config_netscript + checkvalue $CONFIG_NETIPV6 && config_ipv6 checkvalue $CONFIG_DEBNET && config_debnet @@ -258,8 +256,6 @@ 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 @@ -289,9 +285,12 @@ if [ -z "$SPLASH" ] ; then 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/*)" + # 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