X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=27b40b08a51e532a86ca9c235dc13ea51fe1625b;hp=f663cd58e4fb2d57dcfebe7d21e2564d2d95478a;hb=efc764b66b6954e7cb138414f4cc12bd9c7201f2;hpb=1ea16e67f6d5df1a78248970153495b5f31ca9a9 diff --git a/grml-autoconfig b/grml-autoconfig index f663cd5..27b40b0 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -4,19 +4,19 @@ # 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] ################################################################################ # http://wiki.debian.org/LSBInitScripts => ### BEGIN INIT INFO # Provides: grml-autoconfig -# Required-Start: -# Required-Stop: +# Required-Start: $remote_fs +# Required-Stop: $remote_fs # Should-Start: udev # Default-Start: S 2 3 4 5 # Default-Stop: ### END INIT INFO +# {{{ placeholder functions for restart/reload/stop if [[ $1 == "restart" ]] ; then echo "$0 restart - empty placeholder. Doing nothing but running." fi @@ -29,6 +29,7 @@ if [[ $1 == "stop" ]] ; then echo "$0 stop - empty placeholder. Doing nothing but exiting." exit 1 fi +# }}} # {{{ path, signals, umask, zsh, colors export PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin" @@ -43,7 +44,7 @@ setopt no_nomatch # avoid 'no matches found: ...' # {{{ source main files source /etc/grml/autoconfig # configuration file source /etc/grml/autoconfig.functions # functions -source /etc/grml/lsb-functions +source /etc/grml/lsb-functions # helper functions for smart display # }}} # {{{ mount important directories @@ -52,42 +53,47 @@ 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 "splash" ; then - SPLASH=1 +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 -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|">/dev/tty7 +if [ -n "$SPLASH" ] ; then + /usr/bin/grml-bootsplash "|">/dev/tty14 + chvt 14 +fi checkvalue $CONFIG_LANGUAGE && config_language @@ -95,11 +101,13 @@ 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 -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||">/dev/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||">/dev/tty14 checkvalue $CONFIG_HOSTNAME && config_hostname @@ -109,8 +117,6 @@ checkvalue $CONFIG_TIME && config_time checkvalue $CONFIG_KERNEL && config_kernel -checkvalue $CONFIG_VMWARE && config_vmware - checkvalue $CONFIG_SMALL && config_small checkvalue $CONFIG_LD_MOD && config_ld_mod @@ -119,12 +125,14 @@ checkvalue $CONFIG_TIMEZONE && config_timezone checkvalue $CONFIG_FAST && config_fast -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||">/dev/tty7 - -checkvalue $CONFIG_ENVIRONMENT && config_environment +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||">/dev/tty14 checkvalue $CONFIG_SWRAID && config_swraid +checkvalue $CONFIG_DMRAID && config_dmraid + +checkvalue $CONFIG_LVM && config_lvm + # No kernel messages while probing modules echo "0" > /proc/sys/kernel/printk @@ -136,7 +144,7 @@ checkvalue $CONFIG_FIREWIRE_DEV && config_firewire_dev checkvalue $CONFIG_TESTCD && config_testcd -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||">/dev/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||">/dev/tty14 checkvalue $CONFIG_DISCOVER && config_discover @@ -152,26 +160,16 @@ checkvalue $CONFIG_MODULES && config_modules checkvalue $CONFIG_ACPI_APM && config_acpi_apm -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||">/dev/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||">/dev/tty14 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/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||">/dev/tty14 checkvalue $CONFIG_BLIND && config_blind -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 @@ -180,29 +178,29 @@ checkvalue $CONFIG_FSTAB && config_fstab checkvalue $CONFIG_MOUSE && config_mouse -checkvalue $CONFIG_DHCP && config_dhcp - -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty7 - -checkvalue $CONFIG_SYSLOG && config_syslog +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty14 checkvalue $CONFIG_CPU && config_cpu checkvalue $CONFIG_SSH && config_ssh +checkvalue $CONFIG_VNC && config_vnc + checkvalue $CONFIG_PASSWD && config_passwd 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 -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty7 +checkvalue $CONFIG_CONFIG && config_config + +checkvalue $CONFIG_SCRIPTS && config_scripts + +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 @@ -218,17 +216,19 @@ checkvalue $CONFIG_WONDERSHAPER && config_wondershaper checkvalue $CONFIG_GPM && config_gpm -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||">/dev/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||">/dev/tty14 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 -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||||">/dev/tty7 +[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||||">/dev/tty14 checkvalue $CONFIG_CONSOLE && config_console @@ -240,36 +240,47 @@ checkvalue $CONFIG_WELCOME && config_welcome checkvalue $CONFIG_FIX_UNIONFS && fix_unionfs -checkvalue $CONFIG_CREATE_MNT_DIRS && create_mnt_dirs - checkvalue $CONFIG_915RESOLUTION && config_915resolution -checkvalue $CONFIG_AUTOMOUNT && config_automount +checkvalue $CONFIG_MYPATH && config_mypath checkvalue $CONFIG_DISTCC && config_distcc +checkvalue $CONFIG_DISTRI && config_distri + checkvalue $CONFIG_BLANKING && config_blanking -[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||||">/dev/tty7 +if [ -n "$SPLASH" ] ; then + /usr/bin/grml-bootsplash "|||||||||||">/dev/tty14 + chvt 1 +fi + +checkvalue $CONFIG_TOHD && config_tohd checkvalue $CONFIG_GRML2HD && config_grml2hd +checkvalue $CONFIG_DEBOOTSTRAP && config_debootstrap + 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 +# }}} # {{{ Re-enable signals trap 2 3 11