Added tag 0.6.26 for changeset 7e0ead45ac55
[grml-autoconfig.git] / autoconfig.functions
1 #!/bin/zsh
2 # Filename:      autoconfig.functions
3 # Purpose:       basic system configuration and hardware setup for grml system
4 # Authors:       grml-team (grml.org), (c) Klaus Knopper <knopper@knopper.net>, (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Son Mär 25 12:32:37 CEST 2007 [mika]
8 ################################################################################
9
10 # {{{ path, variables, signals, umask, zsh
11 export PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin"
12 DEBUG="/dev/null"
13 KERNEL="$(uname -r)"
14 umask 022
15
16 # Ignore these signals in non-interactive mode: INT, TERM, SEGV
17 [ -z "$PS1" ] && trap "" 2 3 11
18
19 # zsh stuff
20 iszsh(){
21 if [ -n "$ZSH_VERSION" ] ; then
22   return 0
23 else
24   return 1
25 fi
26 }
27 # avoid 'no matches found: ...'
28 iszsh && setopt no_nomatch # || echo "Warning: not running under zsh!"
29 # }}}
30
31 ### {{{ Utility Functions
32
33 # Simple shell grep
34 stringinfile(){
35   case "$(cat $2)" in *$1*) return 0;; esac
36   return 1
37 }
38
39 # same for strings
40 stringinstring(){
41   case "$2" in *$1*) return 0;; esac
42   return 1
43 }
44
45 # Reread boot command line; echo last parameter's argument or return false.
46 getbootparam(){
47   stringinstring " $1=" "$CMDLINE" || return 1
48   result="${CMDLINE##*$1=}"
49   result="${result%%[   ]*}"
50   echo "$result"
51   return 0
52 }
53
54 # Check boot commandline for specified option
55 checkbootparam(){
56   stringinstring " $1" "$CMDLINE"
57   return "$?"
58 }
59
60 checkvalue(){
61   if [ "$1" = "yes" ] ; then
62     return 0
63   else
64     return 1
65   fi
66 }
67
68 checkgrmlsmall(){
69   grep -q small /etc/grml_version 2>>$DEBUG && return 0 || return 1
70 }
71
72 checkgrmlusb(){
73   grep -q usb /etc/grml_version 2>>$DEBUG && return 0 || return 1
74 }
75 ### }}}
76
77 # {{{ filesystems (proc, pts, sys) and fixes
78 mount_proc(){
79   [ -f /proc/version ] || mount -t proc /proc /proc 2>/dev/null
80 }
81
82 mount_pts(){
83   stringinfile "/dev/pts" /proc/mounts || mount -t devpts /dev/pts /dev/pts 2>/dev/null
84 }
85
86 mount_sys(){
87   [ -d /sys/devices ] || mount -t sysfs /sys /sys 2>/dev/null
88 }
89 # }}}
90
91 # {{{ Read in boot parameters
92 [ -f /proc/version ] || mount_proc # make sure we can access /proc/cmdline when sourcing this file too
93 CMDLINE="$(cat /proc/cmdline)"
94 [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/* | tr '\n' ' ')"
95 # }}}
96
97 # {{{ Check if we are running from the grml-CD or HD
98 INSTALLED=""
99 [ -e /GRML/etc/grml_cd ] || INSTALLED="yes"
100
101 # testcd
102 TESTCD=""
103 checkbootparam "testcd" >>$DEBUG 2>&1 && TESTCD="yes"
104 # }}}
105
106 # {{{ source lsb-functions , color handling
107 if checkbootparam "nocolor"; then
108   RC_NOCOLOR=yes
109   . /etc/grml/lsb-functions
110   einfo "Disabling colors in bootsequence as requested on commandline." ; eend 0
111 else
112   . /etc/grml/lsb-functions
113   . /etc/grml_colors
114 fi
115 # }}}
116
117 # {{{ debug
118 config_debug(){
119  if checkbootparam "debug"; then
120    BOOTDEBUG="yes"
121  fi
122  if stringinstring "BOOT_IMAGE=debug " "$CMDLINE" ; then
123    BOOTDEBUG="yes"
124  fi
125  rundebugshell(){
126   if [ -n "$BOOTDEBUG" ]; then
127     einfo "Starting intermediate shell stage $stage as requested by \"debug\" option."
128     eindent
129     if [ -r /etc/grml/screenrc ] ; then
130        einfo "Starting GNU screen to be able to use a full featured shell environment."
131        einfo "Just exit the shells (and therefore screen) to continue boot process..."
132        /bin/zsh -c "screen -c /etc/grml/screenrc"
133     else
134       einfo "Notice that the shell does not provide job handling: ctrl-z, bg and fg won't work!"
135       einfo "Just exit the shell to continue boot process..."
136       /bin/zsh
137     fi
138     eoutdent
139   fi
140  }
141 }
142 # }}}
143
144 # {{{ log
145 config_log(){
146 if checkbootparam "log"; then
147   export DEBUG="/tmp/grml.log.`date +%Y%m%d`"
148   touch $DEBUG
149   einfo "Bootparameter log found. Log files: ${DEBUG} and /var/log/boot."
150   eindent
151     einfo "Starting bootlogd."
152     bootlogd -r -c 1>>$DEBUG 2>&1 ; eend $?
153   eoutdent
154 else
155   DEBUG="/dev/null"
156 fi
157 }
158 # }}}
159
160 # {{{ Check if we are in interactive startup mode
161 INTERACTIVE=""
162 stringinstring "BOOT_IMAGE=expert " "$CMDLINE" && INTERACTIVE="yes"
163 # }}}
164
165 # {{{ set firmware timeout via bootparam
166 config_fwtimeout(){
167  if checkbootparam fwtimeout ; then
168    TIMEOUT="$(getbootparam 'fwtimeout' 2>>$DEBUG)"
169    einfo "Bootoption fwtimeout found. (Re)Loading firmware_class module."
170    rmmod firmware_class 1>>$DEBUG 2>&1
171    modprobe firmware_class ; eend $?
172  fi
173  if [ -z "$TIMEOUT" ] ; then
174    TIMEOUT="100" # linux kernel default: 10
175  fi
176  if [ -f /sys/class/firmware/timeout ] ; then
177    einfo "Setting timeout for firmware loading to ${TIMEOUT}."
178    echo 100 > /sys/class/firmware/timeout ; eend $?
179  fi
180 }
181 # }}}
182
183 ### {{{ language configuration / localization
184 config_language(){
185
186  einfo "Activating language settings:"
187  eindent
188
189  # people can specify $LANGUAGE and $CONSOLEFONT in a config file:
190  [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig
191
192  grep -q ' lang=.*-utf8' /proc/cmdline && UTF8='yes' || UTF8=''
193
194  # check for bootoption which overrides config from /etc/grml/autoconfig:
195  BOOT_LANGUAGE="$(getbootparam lang 2>>$DEBUG)"
196  [ -n "$BOOT_LANGUAGE" ] && LANGUAGE="$BOOT_LANGUAGE"
197
198  # set default to 'en' in live-cd mode if $LANGUAGE is not yet set:
199  if [ -z "$INSTALLED" ] ; then
200     [ -n "$LANGUAGE" ] || LANGUAGE='en-utf8'
201  fi
202
203  # if bootoption lang is used update /etc/default/locale, otherwise *not*!
204  if [ -n "$BOOT_LANGUAGE" ] ; then
205     [ -x /usr/sbin/grml-setlang ] && /usr/sbin/grml-setlang "$LANGUAGE"
206  fi
207
208  # set console font
209  if [ -z "$CONSOLEFONT" ] ; then
210     if ! checkbootparam "nodefaultfont" >>$DEBUG 2>&1 ; then
211        # [ -n "$UTF8" ] && CONSOLEFONT='LatArCyrHeb-16' || CONSOLEFONT='Lat15-Terminus16'
212        # if [ -r /usr/share/consolefonts/Lat15-Terminus16.psf.gz ] ; then
213        if [ -r /usr/share/consolefonts/Uni3-Terminus16.psf.gz ] ; then
214           CONSOLEFONT='Uni3-Terminus16'
215        else
216           ewarn "/usr/share/consolefonts/Uni3-Terminus16.psf.gz not available. Please upgrade package console-terminus." ; eend 1
217        fi
218     fi
219  fi
220
221  # export it now, so error messages get translated, too
222  if checkgrmlsmall ; then
223     export LANG='C' # grml-small does not provide any further locales
224  else
225     [ -r /etc/default/locale ] && . /etc/default/locale
226     export LANG LANGUAGE
227  fi
228
229  # configure keyboard layout, read in already set values first:
230  [ -r /etc/sysconfig/keyboard ] && . /etc/sysconfig/keyboard
231
232  # now allow keyboard override by boot commandline for later use:
233  KKEYBOARD="$(getbootparam keyboard 2>>$DEBUG)"
234  [ -n "$KKEYBOARD" ] && KEYTABLE="$KKEYBOARD"
235  # notce: de/at is a bad choice, so take de-latin1-nodeadkeys instead:
236  [[ "$KKEYBOARD" == 'de' ]] && KEYTABLE=de-latin1-nodeadkeys
237  [[ "$KKEYBOARD" == 'at' ]] && KEYTABLE=de-latin1-nodeadkeys
238
239  # modify /etc/sysconfig/keyboard only in live-cd mode:
240  if [ -z "$INSTALLED" ] ; then
241
242    local LANGUAGE="$BOOT_LANGUAGE"
243    . /etc/grml/language-functions
244    # allow setting xkeyboard explicitly different than console keyboard
245    KXKEYBOARD="$(getbootparam xkeyboard 2>>$DEBUG)"
246    if [ -n "$KXKEYBOARD" ]; then
247       XKEYBOARD="$KXKEYBOARD"
248       KDEKEYBOARD="$KXKEYBOARD"
249    elif [ -n "$KKEYBOARD" ]; then
250       XKEYBOARD="$KKEYBOARD"
251       KDEKEYBOARD="$KKEYBOARD"
252    fi
253
254    # duplicate of previous code to make sure /etc/grml/language-functions
255    # does not overwrite our values....
256    # now allow keyboard override by boot commandline for later use:
257    KKEYBOARD="$(getbootparam keyboard 2>>$DEBUG)"
258    [ -n "$KKEYBOARD" ] && KEYTABLE="$KKEYBOARD"
259    # notce: de/at is a bad choice, so take de-latin1-nodeadkeys instead:
260    [[ "$KKEYBOARD" == 'de' ]] && KEYTABLE=de-latin1-nodeadkeys
261    [[ "$KKEYBOARD" == 'at' ]] && KEYTABLE=de-latin1-nodeadkeys
262
263    # write keyboard related variables to file for later use
264    [ -d /etc/sysconfig ] || mkdir /etc/sysconfig
265    echo "KEYTABLE=\"$KEYTABLE\""          > /etc/sysconfig/keyboard
266    echo "XKEYBOARD=\"$XKEYBOARD\""       >> /etc/sysconfig/keyboard
267    echo "KDEKEYBOARD=\"$KDEKEYBOARD\""   >> /etc/sysconfig/keyboard
268    echo "KDEKEYBOARDS=\"$KDEKEYBOARDS\"" >> /etc/sysconfig/keyboard
269  fi
270
271  [ -r /etc/sysconfig/keyboard ] && . /etc/sysconfig/keyboard
272
273   # Set default keyboard before interactive setup
274   if [ -n "$KEYTABLE" ] ; then
275    einfo "Running loadkeys for ${WHITE}${KEYTABLE}${NORMAL} in background"
276    loadkeys -q $KEYTABLE &
277    eend $?
278   fi
279
280   if [ -n "$CONSOLEFONT" ] ; then
281      einfo "Running consolechars using ${CONSOLEFONT}"
282      consolechars -f $CONSOLEFONT || consolechars -d
283      eend $?
284   fi
285
286   # we have to set up all consoles, therefore loop it over all ttys:
287   if [ -n "$CHARMAP" ] ; then
288      einfo "Running consolechars for ${CHARMAP}"
289      NUM_CONSOLES=`fgconsole --next-available`
290      NUM_CONSOLES=`expr ${NUM_CONSOLES} - 1`
291      [ ${NUM_CONSOLES} -eq 1 ] && NUM_CONSOLES=6
292      for vc in `seq 0 ${NUM_CONSOLES}`  ; do
293        consolechars --tty=/dev/tty${vc} -m ${CHARMAP} ; RC=$?
294      done
295      eend ${RC}
296   fi
297
298   # activate unicode console if running within utf8 environment
299   if [ -r /etc/default/locale ] ; then
300      if grep -q "LANG=.*UTF" /etc/default/locale ; then
301         einfo "Setting up unicode environment."
302         unicode_start
303         eend $?
304      fi
305   fi
306
307  eoutdent
308 }
309 # }}}
310
311 # {{{ Set hostname
312 config_hostname(){
313  if checkbootparam hostname ; then
314   HOSTNAME="$(getbootparam 'hostname' 2>>$DEBUG)"
315   einfo "Setting hostname to $HOSTNAME as requested."
316   sed -i "s/^127.0.0.1.*localhost/127.0.0.1 $HOSTNAME localhost/" /etc/hosts
317   hostname $HOSTNAME ; eend $?
318  else
319   hostname --file /etc/hostname
320  fi
321 }
322 # }}}
323
324 # fstabuser (needed when running from harddisk with username != grml {{{
325 config_userfstab(){
326   [ -r /etc/grml/autoconfig ] && . /etc/grml/autoconfig
327   if [ -n "$CONFIG_FSTAB_USER" ] ; then
328      fstabuser="$CONFIG_FSTAB_USER"
329   else
330      fstabuser=$(getent passwd 1000 | cut -d: -f1)
331   fi
332   # if not yet set fall back to default 'grml' user
333   [ -n "$fstabuser" ] || fstabuser='grml'
334 }
335 # }}}
336
337 # {{{ Set clock (Local time is more often used than GMT, so it is default)
338 config_time(){
339  # don't touch the files if running from harddisk:
340  if [ -z "$INSTALLED" ]; then
341     UTC=""
342     checkbootparam utc >>$DEBUG 2>&1 && UTC="-u"
343     checkbootparam gmt >>$DEBUG 2>&1 && UTC="-u"
344     # hwclock uses the TZ variable
345     [ -r /etc/timezone ] && TZ=$(cat /etc/timezone)
346     [ -n "$TZ" ] || TZ=Europe/Vienna
347
348     if ! [ -r /dev/rtc ] ; then
349       ewarn "Realtime clock not available, skipping execution of hwclock therefore." ; eend 0
350     else
351       ERROR=$(TZ="$TZ" hwclock $UTC -s 2>&1 | head -1) ; RC=$?
352       if [ -n "$ERROR" ] ; then
353          eindent
354          ERROR=$(TZ="$TZ" hwclock $UTC -s --directisa 2>&1 | head -1)
355          if [ -n "$ERROR" ] ; then
356             eerror "Problem running hwclock: $ERROR" ; eend 1
357          fi
358          eoutdent
359       fi
360     fi
361  fi
362 }
363 # }}}
364
365 # {{{ print kernel info
366 config_kernel(){
367   vmware-detect &>/dev/null && VMWARE="inside ${WHITE}VMware/Qemu${NORMAL}"
368   [ -d /proc/xen ] && VMWARE='' # vmware-detect returns '0' when running with a Xen-enabled kernel
369   einfo "Running Linux Kernel $KERNEL $VMWARE" ; eend 0
370   if [ -r /proc/cpuinfo ] ; then
371      if egrep -q '^flags.*(vmx|svm)' /proc/cpuinfo ; then
372        eindent
373        einfo 'CPU(s) featuring virtualization technology detected' ; eend 0
374        eoutdent
375      fi
376   fi
377   if [ -d /proc/xen ] ; then
378      eindent
379      einfo 'Running kernel featuring support for Xen detected' ; eend 0
380      eoutdent
381   fi
382 }
383 # }}}
384
385 # {{{ vmware specific stuff
386 config_vmware(){
387 if checkbootparam novmware ; then
388    ewarn "Skipping running vmware specific stuff as requested on boot commandline." ; eend 0
389 else
390    if [ -z "$INSTALLED" ] ; then
391       if ! checkbootparam qemu ; then
392          if vmware-detect ; then
393             if [ -r /etc/X11/xorg.conf.vmware ] ; then
394                einfo "VMware: Copying /etc/X11/xorg.conf.vmware to /etc/X11/xorg.conf"
395                cp /etc/X11/xorg.conf.vmware /etc/X11/xorg.conf ; eend $?
396             fi
397          fi
398       fi
399    fi
400 fi
401 }
402 # }}}
403
404 # {{{ qemu specific stuff
405 config_qemu(){
406 if checkbootparam qemu ; then
407    if [ -r /etc/X11/xorg.conf.example ] ; then
408       einfo "Qemu: Copying /etc/X11/xorg.conf.example to /etc/X11/xorg.conf"
409       cp /etc/X11/xorg.conf.example /etc/X11/xorg.conf ; eend $?
410    fi
411 fi
412 }
413 # }}}
414
415 # {{{ ld.so.cache + depmod
416 config_ld_mod(){
417 if [ -n "$INSTALLED" ]; then
418  if ! [ -r /etc/grml.first.boot ] ; then
419   einfo "Running from HD for the first time, regenerate ld.so.cache and modules.dep:"
420   eindent
421 # Regenerate ld.so.cache and module dependencies on HD
422     einfo "Running ldconfig" ; ldconfig  ; eend $?
423     einfo "Running depmod"   ; depmod -a ; eend $?
424     touch /etc/grml.first.boot
425     eend 0
426   eoutdent
427  fi
428 fi
429 }
430 # }}}
431
432 # update_progress {{{
433 update_progress(){
434   # be sure we are non-blocking
435   (echo "$1" > /etc/sysconfig/progress) &
436 }
437 # }}}
438
439 # {{{ timezone
440 config_timezone(){
441  # don't touch the files if running from harddisk:
442  if [ -z "$INSTALLED" ]; then
443   einfo "Setting timezone."
444   KTZ="$(getbootparam tz 2>>$DEBUG)"
445   [ -f "/usr/share/zoneinfo/$KTZ" ] && TZ="$KTZ"
446   rm -f /etc/localtime
447   cp "/usr/share/zoneinfo/$TZ" /etc/localtime && eend 0
448  fi
449 }
450 # }}}
451
452 # small computer / nearly no ram {{{
453 config_small(){
454
455 RAM=$(/usr/bin/gawk '/MemTotal/{print $2}' /proc/meminfo)
456 # MEM=$(/usr/bin/gawk 'BEGIN{m=0};/MemFree|Cached|SwapFree/{m+=$2};END{print m}' /proc/meminfo)
457 eindent
458
459 if checkbootparam "small"; then
460   einfo "Information: ${RAM} kB of RAM available." ; eend 0
461   einfo "Bootoption small detected. Activating small system."
462   if [ -r /etc/inittab.small ] ; then
463     mv /etc/inittab /etc/inittab.normal
464     mv /etc/inittab.small /etc/inittab
465   else
466     sed -i 's/^9/#&/' /etc/inittab
467     sed -i 's/^10/#&/' /etc/inittab
468     sed -i 's/^11/#&/' /etc/inittab
469     sed -i 's/^12/#&/' /etc/inittab
470   fi
471   /sbin/telinit q ; eend $?
472 else
473   if checkgrmlsmall ; then
474     if [[ $RAM -lt 25000 ]] ; then
475       ewarn "Information: ${RAM} kB of RAM available." ; eend 1
476       ewarn "At least 32MB of RAM should be available for grml-small." ; eend 1
477       ewarn "Use the bootoption small to save some more MB of memory usage." ; eend 0
478       ewarn "Dropping you into a rescue shell. To continue booting exit the shell." ; eend 0
479       /bin/zsh --login
480     else
481       einfo "Information: ${RAM} kB of RAM available." ; eend 0
482     fi
483   else
484     if [[ $RAM -lt 58000 ]] ; then
485       ewarn "Information: ${RAM} kB of RAM available." ; eend 1
486       ewarn "At least 64MB of RAM should be available for grml." ; eend 1
487       ewarn "Use the bootoption small to save some more MB of memory usage." ; eend 0
488       ewarn "Dropping you into a rescue shell. To continue booting exit the shell." ; eend 0
489       /bin/zsh --login
490     else
491       einfo "Information: ${RAM} kB of RAM available." ; eend 0
492     fi
493   fi
494 fi
495 eoutdent
496 }
497 # }}}
498
499 # skip startup of w3m {{{
500 config_fast(){
501 if checkbootparam "fast"; then
502   ewarn "Bootoption fast detected. Skipping startup of w3m."
503     sed -i 's#^1:.*#1:12345:respawn:/usr/bin/openvt -f -c 1 -w -- /bin/zsh#' /etc/inittab
504   /sbin/telinit q ; eend $?
505 fi
506 }
507 # }}}
508
509 # activate serial console {{{
510 config_console(){
511 if checkbootparam "console"; then
512   einfo "Bootoption (for serial) console detected. Activating mgetty."
513     sed -i 's/^#T0/T0/' /etc/inittab
514     sed -i 's/^#T1/T1/' /etc/inittab
515   /sbin/telinit q ; eend $?
516 fi
517 }
518 # }}}
519
520 # For burning on IDE-CD-Roms, k3b (and others) check for special permissions {{{
521 config_cdrom_perm(){
522 CDROMS=""
523 for DEVICE in /proc/ide/hd?; do
524  [ "$(cat $DEVICE/media 2>/dev/null)" = "cdrom" ] && CDROMS="$CDROMS /dev/${DEVICE##*/}"
525 done
526 [ -n "$CDROMS" ] && { chown root.cdrom $CDROMS; chmod 666 $CDROMS; } 2>/dev/null
527 }
528 # }}}
529
530 # {{{ Bring up loopback interface now
531 config_local_net(){
532  if [ -z "$INSTALLED" ] ; then
533     if grep -q 'iface lo inet loopback' /etc/network/interfaces 2>/dev/null ; then
534        grep -q lo=lo /etc/network/run/ifstate 2>/dev/null || ifup lo
535     else
536        ifconfig lo up
537     fi
538  fi
539 }
540 # }}}
541
542 # firewire devices {{{
543 # the raw1394 driver does not yet export info into SYSFS,
544 # so let's create raw1394 device manually
545 # http://www.michael-prokop.at/blog/index.php?p=352
546 config_firewire_dev(){
547 if checkbootparam "nofirewiredev" ; then
548   ewarn "Skipping creating some firewire devices as requested on boot commandline." ; eend 0
549 else
550 #if [ "${KERNEL%-*}" == "2.6.11" ] ; then
551   einfo "Creating some firewire devices (fix kernel 2.6-bug)."
552 #  cd /dev && MAKEDEV video1394 raw1394
553   [ -r /dev/raw1394 ]   || mknod /dev/raw1394 c 171 0
554   [ -r /dev/video1394 ] || mknod -m 666 /dev/video1394 c 171 16
555 # mknod -m 666 /dev/dv1394 c 171 32 # for NTSC
556   [ -r /dev/dv1394 ]    || mknod -m 666 /dev/dv1394 c 171 34 # for PAL
557   chown -R root:video /dev/raw1394 /dev/video1394 /dev/dv1394
558   chmod -R 664 /dev/raw1394 /dev/video1394 /dev/dv1394 ; eend $?
559 fi
560 #fi
561 }
562 # }}}
563
564 # {{{ copy passwd-lockfile to ramdisk (fix unionfs-behaviour)
565 # otherwise we will get: passwd: Authentication token lock busy
566 config_fix_passwd(){
567  if [ -z "$INSTALLED" ] ; then
568   touch /etc/.pwd.lock
569  fi
570 }
571 # }}}
572
573 # {{{ CD Checker
574 config_testcd(){
575 if [ -n "$TESTCD" ]; then
576   einfo "Checking CD data integrity as requested by '${WHITE}testcd${NORMAL}' boot option."
577   einfo "Reading files and checking against GRML/md5sums, this may take a while..."
578   echo -n "${RED}"
579   ( cd /cdrom/GRML/ ; rm -f /tmp/md5sum.log ; md5sum -c md5sums 2>&1 | tee /tmp/md5sum.log )
580   if [ "$?" = "0" ]; then
581     echo " ${GREEN}Everything looks OK${NORMAL}"
582     else
583     echo "${RED} *** CHECKSUM FAILED FOR THESE FILES:                          ***"
584     egrep -v '(^md5sum:|OK$)' /tmp/md5sum.log
585     echo "${RED} *** DATA ON YOUR CD MEDIUM IS POSSIBLY INCOMPLETE OR DAMAGED, ***${NORMAL}"
586     echo "${RED} *** OR YOUR COMPUTER HAS BAD RAM.                             ***${NORMAL}"
587     echo -n "${CYAN}Hit return to contine, or press the reset button to quit.${NORMAL}\a\a\a "
588     read a
589   fi
590   eend 0
591 fi
592 }
593 # }}}
594
595 # {{{ hardware detection via discover
596 config_discover(){
597 if checkbootparam "nodisc" ; then
598   ewarn "Skipping hardware detection via discover as requested on boot commandline." ; eend 0
599 else
600  if [ -x /sbin/discover ] ; then
601   einfo "Discovering hardware. Trying to load the following modules in background:"
602    eindent
603    einfo "$(discover --data-path=linux/module/name --data-path=linux/modules/options --format="%s %s" --data-version=`uname -r` --enable-bus all | sort -u | xargs echo)"
604    eoutdent
605   /sbin/discover-modprobe -v 1>>$DEBUG 2>&1 &
606   eend 0
607  else
608   eerror "Application discover not available. Information: udev should handle hardware recognition." ; eend 0
609  fi
610 fi
611 }
612 # }}}
613
614 # {{{ hardware detection via hwinfo
615 config_hwinfo(){
616 if checkbootparam hwinfo >>$DEBUG 2>&1; then
617   einfo "Discovering hardware via hwinfo:"
618   MODULES=$(su grml hwinfo | grep "Cmd: \"modprobe" | awk '{print $5}' | sed 's/"//')
619   echo -n "  Loading modules: "
620   for i in `echo $MODULES` ; do echo -n $i && modprobe $i ; done
621   eend 0
622 fi
623 }
624 # }}}
625
626 # {{{ disable hotplug agents on request
627 config_hotplug_agent(){
628 if checkbootparam "noagent" ; then
629   AGENT="$(getbootparam 'noagent' 2>>$DEBUG)"
630   AGENTLIST=$(echo "$AGENT" | sed 's/,/\\n/g')
631   AGENTNL=$(echo "$AGENT" | sed 's/,/ /g')
632   einfo "Disabling hotplug-agent(s) $AGENTNL"
633   for agent in $(echo -e $AGENTLIST) ; do
634     mv /etc/hotplug/${agent}.rc /etc/hotplug/${agent}.norc
635   done
636   [ "$?" == "0" ] ; eend $?
637 fi
638 }
639 # }}}
640
641 # {{{ blacklist of hotplug-modules
642 config_hotplug_blacklist(){
643 if checkbootparam "black" ; then
644   BLACK="$(getbootparam 'black' 2>>$DEBUG)"
645   BLACKLIST=$(echo "$BLACK" | sed 's/,/\\n/g')
646   BLACKNL=$(echo "$BLACK" | sed 's/,/ /g')
647   einfo "Blacklisting $BLACKNL via /etc/hotplug/blacklist.d/hotplug-light"
648   echo -e "$BLACKLIST" >> /etc/hotplug/blacklist.d/hotplug-light
649   echo -e "$BLACKLIST" >> /etc/hotplug/blacklist
650   eend 0
651 fi
652 }
653 # }}}
654
655 # {{{ run hotplug
656 config_hotplug(){
657 if checkbootparam "nohotplug" ; then
658   ewarn "Skipping running hotplug as requested on boot commandline." ; eend 0
659 else
660   if [ -r /etc/init.d/hotplug ] ; then
661     einfo "Starting hotplug system in background."
662     /etc/init.d/hotplug start 1>>$DEBUG 2>>$DEBUG &
663     eend 0
664   elif [ -r /etc/init.d/hotplug-light ] ; then
665     einfo "Starting hotplug-light system in background."
666     /etc/init.d/hotplug-light start 1>>$DEBUG 2>>$DEBUG &
667     eend 0
668   else
669     ewarn "No hotplug system found. Should be handled by udev. Skipping execution." ; eend 0
670   fi
671 fi
672 }
673 # }}}
674
675 # {{{ blacklist specific module [ used in /etc/init.d/udev ]
676 config_blacklist(){
677 if checkbootparam "blacklist" ; then
678  if [ -z "$INSTALLED" ]; then
679   einfo "Bootoption blacklist found."
680   BLACK="$(getbootparam 'blacklist' 2>>$DEBUG)"
681   if [ -n "$BLACK" ] ; then
682     einfo "Blacklisting module ${BLACK} via /etc/modprobe.d/grml."
683     echo "# begin entry generated by config_blacklist of grml-autoconfig" >> /etc/modprobe.d/grml
684     echo "blacklist $BLACK"     >> /etc/modprobe.d/grml
685     echo "alias     $BLACK off" >> /etc/modprobe.d/grml
686     echo "# end   entry generated by config_blacklist of grml-autoconfig" >> /etc/modprobe.d/grml ; eend $?
687   else
688    eerror "No given module for blacklist found. Blacklisting will not work therefor."
689   fi
690  else
691   ewarn "Backlisting via bootoption does not work on harddisk installations." ; eend 1
692   eindent
693    einfo "Please blacklist the module(s) via /etc/modprobe.d/blacklist."
694   eoutdent
695  fi
696 fi
697 }
698 # }}}
699
700 # {{{ ACPI
701 config_acpi_apm(){
702 if [ -d /proc/acpi ]; then
703   if checkbootparam "noacpi"; then
704     ewarn "Skipping ACPI Bios detection as requested on boot commandline." ; eend 0
705   else
706     einfo "ACPI Bios found, activating modules: "
707     eindent
708     found=""
709     for a in /lib/modules/$KERNEL/kernel/drivers/acpi/*; do
710       basename="${a##*/}"
711       basename="${basename%%.*}"
712       case "$basename" in *_acpi)
713        egrep -qi "${basename%%_acpi}" /proc/acpi/dsdt 2>>$DEBUG || continue ;;
714       esac
715       modprobe $basename >>$DEBUG 2>&1 && found="yes"
716       local BASE="$BASE $basename"
717     done
718     if [ -n "$found" ] ; then
719       einfo "$BASE"  ; eend 0
720     else
721       ewarn "(none)" ; eend 1
722     fi
723     if ! [ -S /var/run/acpid.socket ] ; then
724       if ! [ -r /var/run/dbus/pid ] ; then
725         einfo "Starting acpi daemon."
726         /etc/init.d/acpid start >>$DEBUG ; eend $?
727       else
728         eerror "acpid error: it seems you are running d-bus/hal, but acpid needs to be started before d-bus."
729         eerror "Solution: please activate acpid via /etc/runlevel.conf"
730         eend 1
731       fi
732     else
733       ewarn "acpi daemon already running."
734       eend 0
735     fi
736     eoutdent
737   fi
738 else
739 # APM
740   if checkbootparam "noapm"; then
741     ewarn "Skipping APM Bios detection as requested on boot commandline." ; eend 0
742   else
743     modprobe apm power_off=1 >>$DEBUG 2>&1
744     if [ "$?" = "0" ] ; then
745        if [ -x /etc/init.d/apmd ] ;then
746           einfo "APM Bios found, enabling power management functions."
747           /etc/init.d/apmd start ; eend $?
748        fi
749     else
750       eerror "Loading apm module failed." ; eend 1
751     fi
752   fi
753 fi
754 }
755 # }}}
756
757 # {{{ PCMCIA Check/Setup
758 # This needs to be done before other modules are being loaded (by hwsetup)
759 config_pcmcia(){
760 if checkbootparam "nopcmcia"; then
761   ewarn "Skipping PCMCIA detection as requested on boot commandline." ; eend 0
762 else
763   if /usr/sbin/laptop-detect ; then
764     einfo "Detected Laptop - checking for PCMCIA." && eend 0
765     modprobe pcmcia_core >>$DEBUG 2>&1
766     # Try Cardbus or normal PCMCIA socket drivers
767     modprobe yenta_socket >>$DEBUG 2>&1 || modprobe i82365 >>$DEBUG 2>&1 || modprobe pd6729 >>$DEBUG 2>&1 || modprobe tcic >>$DEBUG 2>&1
768     if [ "$?" = "0" ]; then
769       modprobe ds >>$DEBUG 2>&1
770       if [ -d /proc/bus/pccard ] ; then
771        if [ -x /sbin/cardmgr ] ; then
772         einfo "PCMCIA found, starting cardmgr."
773         cardmgr >>$DEBUG 2>&1 && sleep 6 && eend 0
774        else
775         eerror "No cardmgr found. Make sure package pcmciautils is installed, it should handle it instead." ; eend 1
776        fi
777       fi
778     fi
779   fi
780 fi
781 }
782 # }}}
783
784 # {{{ run software synthesizer via speakup
785 config_swspeak(){
786 if checkbootparam swspeak ; then
787  if [ -d /proc/speakup/ ] ; then
788   einfo "Bootoption swspeak found. Kernel supports speakup." ; eend 0
789   eindent
790    if [ -x /etc/init.d/speech-dispatcher ] ; then
791      einfo "Starting speech-dispatcher."
792      /etc/init.d/speech-dispatcher start 1>>DEBUG ; eend $?
793      einfo "Activating sftsyn in Kernel."
794      echo sftsyn >/proc/speakup/synth_name ; eend $?
795      einfo "Just run swspeak if you want to use software synthesizer via speakup."
796      flite -o play -t "Finished activating software speakup. Just run swspeak when booting finished."
797    else
798     eerror "speech-dispatcher not available. swspeak will not work without it." ; eend 1
799     flite -o play -t "speech-dispatcher not available. speakup will not work without it."
800    fi
801   eoutdent
802  else
803   eerror "Kernel does not seem to support speakup. Skipping swspeak." ; eend 1
804   flite -o play -t "Kernel does not seem to support speakup. Sorry."
805  fi
806 fi
807 }
808 # }}}
809
810 # {{{ Check for blind option or brltty
811 config_blind(){
812 BLIND=""
813 checkbootparam "blind" && BLIND="yes"
814 BRLTTY="$(getbootparam brltty 2>>$DEBUG)"
815
816 if [ -n "$BLIND" -o -n "$BRLTTY" ]; then
817   if [ -x /sbin/brltty ]; then
818     # Blind option detected, start brltty now.
819     # modprobe serial_core parport_serial generic_serial && echo "done"
820     CMD=brltty
821     BRLTYPE=""
822     BRLDEV=""
823     BRLTEXT=""
824     if [ -n "$BRLTTY" ]; then
825       # Extra options
826       BRLTYPE="${BRLTTY%%,*}"
827       R="${BRLTTY#*,}"
828       if [ -n "$R" -a "$R" != "$BRLTTY" ]; then
829         BRLTTY="$R"
830         BRLDEV="${BRLTTY%%,*}"
831         R="${BRLTTY#*,}"
832         if [ -n "$R" -a "$R" != "$BRLTTY" ]; then
833           BRLTTY="$R"
834           BRLTEXT="${BRLTTY%%,*}"
835           R="${BRLTTY#*,}"
836         fi
837       fi
838     fi
839     [ -n "$BRLTYPE" ] && CMD="$CMD -b $BRLTYPE"
840     [ -n "$BRLDEV"  ] && CMD="$CMD -d $BRLDEV"
841     [ -n "$BRLTEXT" ] && CMD="$CMD -t $BRLTEXT"
842     einfo "Starting braille-display manager."
843 #    ( exec $CMD & )
844     ( sh -c "$CMD" & )
845     sleep 2 && BLINDSOUND="yes"
846     eend 0
847   fi
848 fi
849 }
850 # }}}
851
852 # {{{ Interactive configuration
853 config_interactive(){
854 if [ -n "$INTERACTIVE" ] ; then
855 einfo "Entering interactive configuration second stage."
856
857   echo " ${GREEN}Your console keyboard defaults to: ${MAGENTA}${KEYTABLE}"
858   echo -n "${CYAN}Do you want to (re)configure your console keyboard?${NORMAL} [Y/n] "
859   read a
860   [ "$a" != "n" ] && /usr/sbin/dpkg-reconfigure console-data ; eend $?
861
862   echo -n "${CYAN}Do you want to (re)configure your soundcard?${NORMAL} [Y/n] "
863   read a
864   [ "$a" != "n" ] && alsaconf && ( exec aumix -m 0 >>$DEBUG 2>&1 & ) ; eend $?
865
866   echo -n "${CYAN}Do you want to (re)configure your graphics (X11) subsystem?${NORMAL} [Y/n] "
867   read a
868   [ "$a" != "n" ] && xorgcfg -textmode ; eend $?
869   echo " ${GREEN}Interactive configuration finished. Everything else should be fine for now.${NORMAL}"
870 fi
871 eend 0
872 }
873 # }}}
874
875 # {{{ AGP
876 config_agp(){
877 if checkbootparam forceagp ; then
878 # Probe for AGP. Hope this can fail safely
879   stringinfile "AGP" "/proc/pci" 2>>$DEBUG && { modprobe agpgart || modprobe agpgart agp_try_unsupported=1; } >>$DEBUG 2>&1 && einfo "AGP bridge detected." ; eend 0
880 fi
881 }
882 # }}}
883
884 # {{{ automount(er)
885 config_automounter(){
886 if checkbootparam automounter ; then
887   RUNLEVEL="$(runlevel)"
888   AUTOMOUNTER=""
889   [ -x /etc/init.d/autofs ] && [ "$RUNLEVEL" != "N 1" ] && [ "$RUNLEVEL" != "N S" ] && AUTOMOUNTER="yes"
890
891 addautomount(){
892 # /dev/ice  options
893   d="${1##*/}"
894   if [ -n "$AUTOMOUNTER" ]; then
895     [ -d "/mnt/$d" -a ! -L "/mnt/$d" ] && rmdir /mnt/$d
896     [ -d "/mnt/auto/$d" ] || mkdir -p "/mnt/auto/$d"
897     [ -L "/mnt/$d" ]      || ln -s "/mnt/auto/$d" "/mnt/$d"
898     anew="$d        -fstype=auto,$2 :$i"
899     stringinfile "$anew" "/etc/auto.mnt" || echo "$anew" >> /etc/auto.mnt
900     AUTOMOUNTS="$AUTOMOUNTS $d"
901     new="$1 /mnt/auto/$d  auto   users,noauto,exec,$2 0 0"
902   else
903     [ -d /mnt/$d ] && mkdir -p /mnt/$d
904     new="$1 /mnt/$d  auto   users,noauto,exec,$2 0 0"
905   fi
906   stringinfile "$new" "/etc/fstab" || echo "$new" >> /etc/fstab
907 }
908
909   AUTOMOUNTS="floppy cdrom"
910 # Add new devices to /etc/fstab and /etc/auto.mnt
911   for i in /dev/cdrom?*; do
912     if [ -L $i ]; then
913       addautomount "$i" "ro"
914     fi
915   done
916 fi
917
918 if [ -n "$AUTOMOUNTER" ]; then
919 # Check for floppy dir, reinstall with automounter
920   [ -d /mnt/floppy -a ! -L /mnt/floppy ] && rmdir /mnt/floppy
921   [ -d /mnt/auto/floppy ] || mkdir -p /mnt/auto/floppy
922   [ -L /mnt/floppy ] || ln -s /mnt/auto/floppy /mnt/floppy
923   [ -d /mnt/cdrom -a ! -L /mnt/cdrom ] && rmdir /mnt/cdrom
924   [ -d /mnt/auto/cdrom ] || mkdir -p /mnt/auto/cdrom
925   [ -L /mnt/cdrom ] || ln -s /mnt/auto/cdrom /mnt/cdrom
926   rm -f /etc/fstab.new
927 # Replace paths from bootfloppy
928   sed 's|/mnt/cdrom|/mnt/auto/cdrom|g;s|/mnt/floppy|/mnt/auto/floppy|g' /etc/fstab > /etc/fstab.new
929   mv -f /etc/fstab.new /etc/fstab
930 # Start automounter now
931   einfo "Starting automounter for ${AUTOMOUNTS}."
932   /etc/init.d/autofs start >>$DEBUG ; eend $?
933 fi
934 }
935 # }}}
936
937 # {{{ Collect partitions from /proc/partitions first for enabling DMA
938 check_partitions(){
939 partitions=""
940 IDEDISKS=""
941 while read major minor blocks partition relax; do
942   partition="${partition##*/}"
943   [ -z "$partition" -o ! -e "/dev/$partition" ] && continue
944   case "$partition" in
945     hd?) IDEDISKS="$IDEDISKS $partition";;                # IDE  Harddisk, entire disk
946     sd?) ;;                                               # SCSI Harddisk, entire disk
947 #    [hs]d*) partitions="$partitions /dev/$partition";;    # IDE or SCSI disk partition
948     [hs]d*|ub*) partitions="$partitions /dev/$partition";;    # IDE, USB or SCSI disk partition
949   esac
950 done <<EOT
951 $(awk 'BEGIN{old="__start"}{if($0==old){exit}else{old=$0;if($4&&$4!="name"){print $0}}}' /proc/partitions)
952 EOT
953 }
954 check_partitions 1>/dev/null 2>&1 # avoid output "check_partitions:3: read-only file system"
955 # }}}
956
957 # {{{ Enable DMA for all IDE drives now if not disabled
958 # Notice: Already done by linuxrc, but make sure it's done also on harddisk-installed systems
959 config_dma(){
960 if checkbootparam "nodma"; then
961   ewarn "Skipping DMA accelleration as requested on boot commandline." ; eend 0
962 else
963   for d in $(cd /proc/ide 2>>$DEBUG && echo hd[a-z]); do
964     if test -d /proc/ide/$d; then
965       if egrep -q 'using_dma[ \t]+0' /proc/ide/$d/settings 2>>$DEBUG; then
966         MODEL="$(cat /proc/ide/$d/model 2>>$DEBUG)"
967         test -z "$MODEL" && MODEL="[GENERIC IDE DEVICE]"
968         einfo "Enabling DMA acceleration for: ${WHITE}$d        ${YELLOW}[${MODEL}]${NORMAL}"
969         echo "using_dma:1" >/proc/ide/$d/settings
970         eend 0
971       fi
972     fi
973   done
974 fi
975 }
976 # }}}
977
978 # {{{ Start creating /etc/fstab with HD partitions and USB SCSI devices now
979 config_fstab(){
980
981 NOSWAP="yes" # we do not use swap by default!
982 if checkbootparam "swap" -o checkbootparam "anyswap" ; then
983    NOSWAP=''
984 fi
985
986 if checkbootparam "nofstab" -o checkbootparam "forensic" ; then
987   ewarn "Skipping /etc/fstab creation as requested on boot commandline." ; eend 0
988 else
989   checkbootparam "anyswap" && export ANYSWAP='yes' || export ANYSWAP=""
990   einfo "Scanning for harddisk partitions and creating /etc/fstab. (Disable this via boot option: nofstab)"
991   iszsh && setopt nonomatch
992   if [ -x /usr/sbin/rebuildfstab ] ; then
993     config_userfstab || fstabuser=grml
994     /usr/sbin/rebuildfstab -r -u $fstabuser -g $fstabuser ; eend $?
995   else
996     ewarn "Command rebuildfstab not found. Install package grml-rebuildfstab." ; eend 1
997   fi
998   if [ -e /var/run/rebuildfstab.pid ]; then
999     # Another instance of rebuildfstab, probably from hotplug, is still running, so just wait.
1000     sleep 8
1001   fi
1002 fi
1003 # Scan for swap, config, homedir
1004 if [ -z "$NOSWAP" ]; then
1005    einfo "Searching for swap partition(s) as requested."
1006 fi
1007 GRML_IMG=""
1008 GRML_SWP=""
1009 HOMEDIR="$(getbootparam home)"
1010 if [ -n "$partitions" ]; then
1011  while read p m f relax; do
1012   case "$p" in *fd0*|*proc*|*sys*|*\#*) continue;; esac
1013   partoptions="users,exec"
1014   fnew=""
1015   case "$f" in swap)
1016    eindent
1017    if [ -n "$NOSWAP" ]; then
1018       if [ -z "$INSTALLED" ] ; then
1019          ewarn "Ignoring swap partition ${WHITE}$p${NORMAL}. (Force usage via boot option 'swap', or execute grml-swapon)" ; eend 0
1020       fi
1021    else
1022      case "$(dd if=$p bs=1 count=6 skip=4086 2>/dev/null)" in
1023              S1SUSP|S2SUSP|pmdisk|[zZ]*)
1024                 if [ -n "$ANYSWAP" ] ; then
1025                   einfo "Using swap partition ${WHITE}${p}${NORMAL} [bootoption anyswap found]."
1026                   swapon $p 2>>$DEBUG ; eend $?
1027                 else
1028                   ewarn "Suspend signature on ${WHITE}${p}${NORMAL} found, not using as swap. (Force usage via boot option: anyswap)"
1029                 fi
1030                ;;
1031              *)
1032                 if [[ "$p" == LABEL* ]] ; then
1033                    p=$(blkid -t $p | awk -F: '{print $1}')
1034                 fi
1035                 if grep -q $p /proc/swaps ; then
1036                    ewarn "Not using swap partition ${WHITE}${p}${NORMAL} as it is already in use." ; eend 0
1037                 else
1038                    einfo "Using swap partition ${WHITE}${p}${NORMAL}."
1039                    swapon $p 2>>$DEBUG ; eend $?
1040                 fi
1041                ;;
1042      esac
1043    fi
1044    eoutdent
1045    continue
1046    ;;
1047   esac
1048 # Create mountdir if not already present, but don't try to create stuff like /proc/bus/usb
1049 # Notice: grml-rebuildfstab >= 0.3-1 handles this now
1050 #  case "$m" in *none*|*proc*|*sys*|'') continue ;; esac
1051 #  [ -d "$m" ] || mkdir -p "$m"
1052 # WARNING: NTFS RW mounts are only safe since Kernel 2.6.11
1053   [ "$f" = "ntfs" -a "${KERNEL%.*}" != "2.6" ] && continue
1054   MOUNTOPTS="ro"
1055   case "$f" in
1056     vfat|msdos|ntfs) MOUNTOPTS="$MOUNTOPTS,uid=${fstabuser},gid=${fstabuser}" ;;
1057     ext2|ext3|reiserfs|jfs|reiser4|xfs) MOUNTOPTS="$MOUNTOPTS,noatime" ;;
1058     *) continue ;;
1059     # *) NONEFOUND='1'; continue ;;
1060   esac
1061   if [ -z "$NOSWAP" ] ; then
1062      mount -o "$MOUNTOPTS" -t $f $p $m 2>>$DEBUG || continue
1063      # Activate swapfile, if exists
1064      SWAPFILE="$(/bin/ls -1d $m/[Gg][Rr][Mm][Ll].[Ss][Ww][Pp] 2>/dev/null)"
1065   fi
1066   if [ -z "$NOSWAP" -a -n "$SWAPFILE" -a -f "$SWAPFILE" ]; then
1067    mount -o remount,rw $m
1068    if swapon "$SWAPFILE" 2>>$DEBUG ; then
1069     einfo "Using GRML swapfile ${SWAPFILE}."
1070     fnew="$SWAPFILE swap swap defaults 0 0"
1071     stringinfile "$fnew" "/etc/fstab" || echo "$fnew" >> /etc/fstab
1072     GRML_SWP="$GRML_SWP $SWAPFILE"
1073     eend 0
1074    fi
1075    mount -o remount,ro $m 2>>$DEBUG
1076   fi
1077   IMAGE="$(/bin/ls -1d $m/[Gg][Rr][Mm][Ll].[Ii][Mm][Gg] 2>/dev/null)"
1078   if [ -z "$INSTALLED" -a -z "$GRML_IMG" -a -n "$IMAGE" -a -f "$IMAGE" ]; then
1079    if [ -n "$HOMEDIR" ]; then
1080     if [ "$HOMEDIR" != "scan" -a "$HOMEDIR" != "$IMAGE" -a "$HOMEDIR" != "${IMAGE%/*.*}" ]; then
1081      continue
1082     fi
1083    fi
1084    if type -a grml-image >/dev/null 2>&1 && grml-image "$IMAGE" </dev/console >/dev/console 2>&1; then
1085     GRML_IMG="$IMAGE"
1086     mount -o remount,ro $m 2>>$DEBUG
1087    fi
1088   fi
1089   eend 0
1090   # Umount, if not in use
1091   umount -r $m 2>/dev/null
1092  done <<EOT
1093 $(cat /etc/fstab)
1094 EOT
1095 fi
1096 }
1097 # }}}
1098
1099 # {{{ Mouse
1100 config_mouse(){
1101 if [ -n "$MOUSE_DEVICE" ] ; then
1102   einfo "Detecting mouse: ${MOUSE_FULLNAME} at ${MOUSE_DEVICE}" ; eend $?
1103 fi
1104 }
1105 # }}}
1106
1107 # {{{ IPv6 configuration
1108 # Load IPv6 kernel module and print IP adresses
1109 config_ipv6(){
1110 if checkbootparam "ipv6"; then
1111   einfo "Enabling IPv6 as requested on boot commandline (sleeping for 2 seconds)"
1112   modprobe ipv6
1113   # we probably need some time until stateless autoconfiguration has happened
1114   sleep 2
1115   NETDEVICES="$(awk -F: '/eth.:|tr.:|wlan.:/{print $1}' /proc/net/dev 2>>$DEBUG)"
1116   for DEVICE in `echo "$NETDEVICES"`; do
1117     eindent
1118       einfo "$DEVICE:"
1119       ADDRESSES="$(ifconfig $DEVICE | awk '/.*inet6 addr:.*/{print $3}')"
1120       COUNT="$(ifconfig $DEVICE | awk '/.*inet6 addr:.*/{ sum += 1};END {print sum }')"
1121       eindent
1122         for ADDR in `echo "$ADDRESSES"` ; do
1123             einfo "$ADDR"
1124         done
1125         if [ "$COUNT" -eq "0" ] ; then
1126            einfo "(none)" ; eend 1
1127         fi
1128       eoutdent
1129     eoutdent
1130   done
1131   eend 0
1132 fi
1133 }
1134 # }}}
1135
1136 # {{{ Fat-Client-Version: DHCP Broadcast for IP address
1137 config_dhcp(){
1138 if checkbootparam "nodhcp"; then
1139   ewarn "Skipping DHCP broadcast/network detection as requested on boot commandline." ; eend 0
1140 else
1141   NETDEVICES="$(awk -F: '/eth.:|tr.:|wlan.:/{print $1}' /proc/net/dev 2>>$DEBUG)"
1142   rm -rf /etc/network/status ; mkdir -p /etc/network/status
1143   for DEVICE in `echo "$NETDEVICES"` ; do
1144     einfo "Network device ${WHITE}${DEVICE}${NORMAL} detected, DHCP broadcasting for IP. (Backgrounding)"
1145     trap 2 3 11
1146     ifconfig $DEVICE up >>$DEBUG 2>&1
1147     ( pump -i $DEVICE >>$DEBUG 2>&1 && echo finished_running_pump > /etc/network/status/$DEVICE ) &
1148     trap "" 2 3 11
1149     sleep 1
1150     eend 0
1151   done
1152 fi
1153 }
1154 # }}}
1155
1156 # {{{ helper functions
1157 findfile(){
1158 FOUND=""
1159 # search all partitions for a file in the root directory
1160 for i in /mnt/[sh]d[a-z] /mnt/[sh]d[a-z][1-9] /mnt/[sh]d[a-z][1-9]?*; do
1161 # See if it's already mounted
1162   [ -f "$i/$1" ] &&  { echo "$i/$1"; return 0; }
1163   if [ -d "$i" ] && mount -r "$i" 2>>$DEBUG; then
1164     [ -f "$i/$1" ] && FOUND="$i/$1"
1165     umount -l "$i" 2>>$DEBUG
1166     [ -n "$FOUND" ] && { echo "$FOUND"; return 0; }
1167   fi
1168 done
1169 return 2
1170 }
1171
1172 fstype(){
1173 case "$(file -s $1)" in
1174   *[Ff][Aa][Tt]*|*[Xx]86*) echo "vfat"; return 0;;
1175   *[Rr][Ee][Ii][Ss][Ee][Rr]*)  echo "reiserfs"; return 0;;
1176   *[Xx][Ff][Ss]*)  echo "xfs"; return 0;;
1177   *[Ee][Xx][Tt]3*) echo "ext3"; return 0;;
1178   *[Ee][Xx][Tt]2*) echo "ext2"; return 0;;
1179   *data*)          echo "invalid"; return 0;;
1180   *) echo "auto"; return 0;;
1181 esac
1182 }
1183
1184 # Try to mount this filesystem read-only, without or with encryption
1185 trymount(){
1186 # Check if already mounted
1187 case "$(cat /proc/mounts)" in *\ $2\ *) return 0;; esac
1188 # Apparently, mount-aes DOES autodetect AES loopback files.
1189 [ -b "$1" ] && { mount -t auto -o ro "$1" "$2" 2>>$DEBUG; RC="$?"; }
1190 # We need to mount crypto-loop files with initial rw support
1191 [ -f "$1" ] && { mount -t auto -o loop,rw "$1" "$2" 2>>$DEBUG; RC="$?"; }
1192 # Mount succeeded?
1193 [ "$RC" = "0" ] && return 0
1194 echo ""
1195 einfo "Filesystem not autodetected, trying to mount $1 with AES256 encryption."
1196 a="y"
1197 while [ "$a" != "n" -a "$a" != "N" ]; do
1198 # We need to mount crypto-loop files with initial rw support
1199  mount -t auto -o loop,rw,encryption=AES256 "$1" "$2" && return 0
1200  echo -n "${RED}Mount failed, retry? [Y/n] ${NORMAL}"
1201  # Problem with ioctl() from getpasswd()?
1202  # read a
1203  read a
1204 done
1205 return 1
1206 }
1207 # }}}
1208
1209 # {{{ CPU-detection
1210 config_cpu(){
1211 if checkbootparam "nocpu"; then
1212   ewarn "Skipping CPU detection as requested on boot commandline." ; eend 0
1213 else
1214   # check module dependencies
1215   cpufreq_check() {
1216    if [ -e /lib64 ] ; then
1217       [ -e /lib/modules/${KERNEL}/kernel/arch/x86_64/kernel/cpufreq ] || return 1
1218    else
1219       [ -e /lib/modules/${KERNEL}/kernel/arch/i386/kernel/cpu/cpufreq -o ! -e /lib/modules/${KERNEL}/kernel/drivers/cpufreq ] || return 1
1220    fi
1221   }
1222
1223   if [[ `grep -c processor /proc/cpuinfo` -gt 1 ]] ; then
1224      einfo "Detecting CPU:"
1225      CPU=$(awk -F: '/^processor/{printf "       Processor"$2" is"};/^model name/{printf $2};/^vendor_id/{printf vendor};/^cpu MHz/{printf " %dMHz",int($2)};/^cache size/{printf ","$2" Cache"};/^$/{print ""}' /proc/cpuinfo 2>>$DEBUG)
1226      echo $CPU | sed 's/ \{1,\}/ /g'
1227      eend 0
1228   else
1229      einfo "Detecting CPU: `awk -F: '/^processor/{printf " Processor"$2" is"};/^model name/{printf $2};/^vendor_id/{printf vendor};/^cpu MHz/{printf " %dMHz",int($2)};/^cache size/{printf ","$2" Cache"};/^$/{print ""}' /proc/cpuinfo 2>>$DEBUG` " ; eend 0
1230   fi
1231
1232   if ! cpufreq_check ; then
1233     ewarn "Skipping cpufreq setup as module dependencies are not fulfilled." ; eend 1
1234   else
1235     if /usr/sbin/laptop-detect ; then
1236        einfo "Detected Laptop - trying to use cpu frequency scaling:"
1237        if [ -r /usr/bin/cpufreq-detect.sh ] ; then
1238           eindent
1239           . /usr/bin/cpufreq-detect.sh
1240           if [ -n "$MODULE" -a "$MODULE" != none ]; then
1241              einfo "Loading modules ${MODULE} and cpufreq_ondemand, setting ondemand governor"
1242              modprobe "$MODULE" 1>>$DEBUG || modprobe "$MODULE_FALLBACK" 1>>$DEBUG
1243              if modprobe cpufreq_ondemand && RC=0 || RC=1 ; then
1244                 for file in $(find /sys/devices/system/cpu/ -name scaling_governor 2>/dev/null) ; do
1245                     echo ondemand > $file
1246                 done
1247              fi
1248              eend $RC
1249           else
1250              ewarn "Could not detect an appropriate CPU for use with cpu frequency scaling - skipping." && eend 1
1251           fi
1252           eoutdent
1253        fi # cpufreq-detect
1254     fi # laptop-detect
1255   fi # cpufreq_check
1256 fi # checkbootparam nocpu
1257 }
1258 # }}}
1259
1260 # {{{ autostart of ssh
1261 config_ssh(){
1262 if checkbootparam ssh ; then
1263   SSH_PASSWD="$(getbootparam 'ssh' 2>>$DEBUG)"
1264   einfo "Bootoption passwd found."
1265   if [ -n "$SSH_PASSWD" ] ; then
1266     echo "grml:$SSH_PASSWD" | chpasswd -m
1267     einfo "Starting secure shell server in background."
1268     /etc/init.d/rmnologin start 1>>$DEBUG 2>>$DEBUG
1269     /etc/init.d/ssh start 1>>$DEBUG 2>>$DEBUG &
1270     eend 0
1271   else
1272     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1273   fi
1274   eindent
1275     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1276   eoutdent
1277 fi
1278 }
1279 # }}}
1280
1281 # {{{ set password for user grml
1282 config_passwd(){
1283 if checkbootparam passwd >>$DEBUG 2>&1; then
1284   einfo "Bootoption passwd found."
1285   PASSWD="$(getbootparam 'passwd' 2>>$DEBUG)"
1286   if [ -n "$PASSWD" ] ; then
1287     echo "grml:$PASSWD" | chpasswd -m ; eend $?
1288   else
1289     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1290   fi
1291   eindent
1292     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1293   eoutdent
1294 fi
1295 }
1296 # }}}
1297
1298 # {{{ Check for persistent homedir option and eventually mount /home from there, or use a loopback file.
1299 config_homedir(){
1300 if checkbootparam home ; then
1301 HOMEDIR="$(getbootparam home)"
1302 MYHOMEDEVICE=""
1303 MYHOMEMOUNTPOINT=""
1304 MYHOMEDIR=""
1305 if [ -n "$HOMEDIR" ]; then
1306   einfo "Bootoption home detected." && eend 0
1307   case "$HOMEDIR" in
1308     /dev/*)
1309     MYHOMEDEVICE="${HOMEDIR##/dev/}"
1310     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1311     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1312     MYHOMEDIR="/mnt/${HOMEDIR##/dev/}"
1313   ;;
1314     /mnt/*)
1315     MYHOMEDEVICE="${HOMEDIR##/mnt/}"
1316     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1317     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1318     MYHOMEDIR="$HOMEDIR"
1319   ;;
1320     [Aa][Uu][Tt][Oo]|[Ss][Cc][Aa][Nn]|[Ff][Ii][Nn][Dd])
1321     MYHOMEDIR="$(findfile grml.img)"
1322     MYHOMEDEVICE="${MYHOMEDIR##/mnt/}"
1323     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1324     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1325   ;;
1326   *)
1327     eerror "Invalid home= option '$HOMEDIR' specified (must start with /dev/ or /mnt/ or 'scan')." ; eend 1
1328     eerror "Option ignored." ; eend 1
1329   ;;
1330   esac
1331 fi
1332
1333 if [ -n "$MYHOMEDIR" ]; then
1334   if trymount "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"; then
1335     [ -f "$MYHOMEMOUNTPOINT/grml.img" ] && MYHOMEDIR="$MYHOMEMOUNTPOINT/grml.img"
1336     while read device mountpoint fs relax; do
1337       case "$mountpoint" in *$MYHOMEMOUNTPOINT*)
1338         case "$fs" in *[Nn][Tt][Ff][Ss]*)
1339           umount "$MYHOMEMOUNTPOINT"; eerror "Error: will not mount NTFS filesystem on $MYHOMEDEVICE read/write!" ; eend 1
1340           break
1341         ;;
1342         *[Ff][Aa][Tt]*)
1343         # Note: This currently won't work with encrypted partitions
1344         umount "$MYHOMEMOUNTPOINT"; mount -t vfat -o rw,uid=grml,gid=grml,umask=002 "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"
1345         if [ ! -f "$MYHOMEDIR" ]; then
1346           ewarn "WARNING: FAT32 is not a good filesystem option for /home/grml (missing socket/symlink support)."
1347           ewarn "WARNING: Better use an ext2 loopback file on this device, and boot with home=$MYHOMEDEVICE/grml.img."
1348         fi
1349         ;;
1350       esac
1351       if mount -o remount,rw "$MYHOMEMOUNTPOINT"; then
1352         einfo "Mounting ${WHITE}$MYHOMEDIR${NORMAL} as ${WHITE}/home/grml${NORMAL}."
1353         if [ -f "$MYHOMEDIR" ]; then
1354           # It's a loopback file, mount it over the /home/grml directory
1355           trymount "$MYHOMEDIR" /home/grml
1356           RC="$?"
1357           [ "$RC" = "0" ] && ERROR="$(mount -o remount,rw /home/grml 2>&1)"
1358           RC="$?"
1359         else
1360           # Do a --bind mount
1361           ERROR="$(mount --bind "$MYHOMEDIR" /home/grml 2>&1)"
1362           RC="$?"
1363         fi
1364         [ "$RC" = "0" ] && eend 0 || ( eerror "${ERROR}" ; eend 1 )
1365       fi
1366       break
1367       ;;
1368     esac
1369   done <<EOT
1370 $(cat /proc/mounts)
1371 EOT
1372   fi
1373 fi
1374 fi # checkbootparam home
1375 }
1376 # }}}
1377
1378 # {{{ Check for scripts on CD-ROM
1379 config_cdrom_scripts(){
1380 if checkbootparam "script"; then
1381   for script in /cdrom/scripts/* ; do
1382     einfo " grml script found on CD, executing ${WHITE}${script}${NORMAL}."
1383     . $script
1384   done
1385 fi
1386 }
1387 # }}}
1388
1389 # {{{ Sound
1390 config_mixer(){
1391 if ! [ -x /usr/bin/aumix ] ; then
1392   eerror "aumix binary not available. Can not set sound volumes therefore." ; eend 1
1393 else
1394
1395   if checkbootparam vol ; then
1396     VOL="$(getbootparam 'vol' 2>>$DEBUG)"
1397     if [ -z "$VOL" ] ; then
1398       eerror "Bootoption vol found but no volume level/parameter given. Using defaults." ; eend 1
1399       VOL='75' # default
1400     fi
1401   else
1402     VOL='75' # default
1403   fi
1404
1405   if checkbootparam nosound ; then
1406     einfo "Muting sound devices on request."
1407     # some IBM notebooks require the following stuff:
1408     if [ -x /usr/bin/amixer ] ; then
1409        if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1410           amixer set Front unmute 1>/dev/null
1411           amixer set Front 0% 1>/dev/null
1412        fi
1413     fi
1414     ERROR=$(aumix -w 0 -v 0 -p 0 -m 0 2>&1) ; RC=$?
1415     if [ -n "$ERROR" ] ; then
1416        eindent
1417        eerror "Problem muting sound devices: $ERROR"
1418        eoutdent
1419     fi
1420     eend $RC
1421   elif [ -z "$INSTALLED" ]; then
1422       einfo "Setting mixer volumes to level ${WHITE}${VOL}${NORMAL}."
1423       # some IBM notebooks require the following stuff:
1424       if [ -x /usr/bin/amixer ] ; then
1425          if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1426             amixer set Front unmute 1>/dev/null
1427             amixer set Front ${VOL}% 1>/dev/null
1428          fi
1429       fi
1430       ERROR=$(aumix -w $VOL -v $VOL -p $VOL -m $VOL 2>&1) ; RC=$?
1431       if [ -n "$ERROR" ] ; then
1432          eindent
1433          eerror "Problem setting mixer volumes: $ERROR"
1434          eoutdent
1435       fi
1436       eend $RC
1437   fi
1438
1439 fi
1440 }
1441 # }}}
1442
1443 # {{{ modem detection
1444 config_modem(){
1445 if checkbootparam "nomodem"; then
1446   ewarn "Skipping check for AC97 modem controller as requested on boot commandline." ; eend 0
1447 else
1448   if [ -x /etc/init.d/sl-modem-daemon ] ; then
1449    if lspci | grep Intel | grep -q "AC'97 Modem Controller" ; then
1450      einfo "AC97 modem controller detected. Starting sl-modem-daemon in background."
1451      /etc/init.d/sl-modem-daemon start >>$DEBUG &
1452      eend 0
1453    fi
1454   fi
1455 fi
1456 }
1457 # }}}
1458
1459 # {{{ keyboard add-ons
1460 config_setkeycodes(){
1461 if checkbootparam "setkeycodes" ; then
1462  einfo "Setting keycodes as requested via bootparameter 'setkeycodes'."
1463   # MS MM keyboard add-on
1464   # fix
1465   setkeycodes e001 126 &>/dev/null
1466   setkeycodes e059 127 &>/dev/null
1467   # fn keys
1468   setkeycodes e03b 59 &>/dev/null
1469   setkeycodes e008 60 &>/dev/null
1470   setkeycodes e007 61 &>/dev/null
1471   setkeycodes e03e 62 &>/dev/null
1472   setkeycodes e03f 63 &>/dev/null
1473   setkeycodes e040 64 &>/dev/null
1474   setkeycodes e041 65 &>/dev/null
1475   setkeycodes e042 66 &>/dev/null
1476   setkeycodes e043 67 &>/dev/null
1477   setkeycodes e023 68 &>/dev/null
1478   setkeycodes e057 87 &>/dev/null
1479   setkeycodes e058 88 &>/dev/null
1480   # hp keycodes
1481   setkeycodes e00a 89 e008 90 &>/dev/null
1482  eend 0
1483 fi
1484 }
1485 # }}}
1486
1487 # {{{ wondershaper
1488 config_wondershaper(){
1489  if checkbootparam "wondershaper" ; then
1490     WONDER="$(getbootparam wondershaper 2>>$DEBUG)"
1491     CMD=wondershaper
1492     DEVICE=""
1493     DOWNSTREAM=""
1494     UPSTREAM=""
1495     if [ -n "$WONDER" ]; then
1496       # Extra options
1497       DEVICE="${WONDER%%,*}"
1498       R="${WONDER#*,}"
1499       if [ -n "$R" -a "$R" != "$WONDER" ]; then
1500         WONDER="$R"
1501         DOWNSTREAM="${WONDER%%,*}"
1502         R="${WONDER#*,}"
1503         if [ -n "$R" -a "$R" != "$WONDER" ]; then
1504           WONDER="$R"
1505           UPSTREAM="${WONDER%%,*}"
1506           R="${WONDER#*,}"
1507         fi
1508       fi
1509     fi
1510     [ -n "$DEVICE" ]     && CMD="$CMD $DEVICE"
1511     [ -n "$DOWNSTREAM" ] && CMD="$CMD $DOWNSTREAM"
1512     [ -n "$UPSTREAM" ]   && CMD="$CMD $UPSTREAM"
1513     einfo "Starting wondershaper (${CMD}) in background."
1514     ( sh -c $CMD & ) && eend 0
1515  fi
1516 }
1517 # }}}
1518
1519 # {{{ syslog-ng
1520 config_syslog(){
1521  if checkbootparam "nosyslog"; then
1522   ewarn "Not starting syslog-ng as requested on boot commandline." ; eend 0
1523  else
1524   einfo "Starting syslog-ng in background."
1525   /etc/init.d/syslog-ng start 1>>$DEBUG &
1526   eend 0
1527  fi
1528 }
1529 # }}}
1530
1531 # {{{ gpm
1532 config_gpm(){
1533  if checkbootparam "nogpm"; then
1534   ewarn "Not starting GPM as requested on boot commandline." ; eend 0
1535  else
1536   einfo "Starting gpm in background."
1537 #  /etc/init.d/gpm start 1>>$DEBUG &
1538   ( while [ ! -e /dev/psaux ]; do sleep 5; done; /etc/init.d/gpm start 1>>$DEBUG ) &
1539   eend 0
1540  fi
1541 }
1542 # }}}
1543
1544 # {{{ services
1545 config_services(){
1546  if checkbootparam "services" ; then
1547     SERVICE="$(getbootparam services 2>>$DEBUG)"
1548     SERVICELIST=$(echo "$SERVICE" | sed 's/,/\\n/g')
1549     SERVICENL=$(echo "$SERVICE" | sed 's/,/ /g')
1550     einfo "Starting service(s) ${SERVICENL} in background."
1551     for service in $(echo -e $SERVICELIST) ; do
1552        /etc/init.d/${service} start 1>>$DEBUG &
1553     done
1554     [ "$?" == "0" ] ; eend $?
1555  fi
1556 }
1557 # }}}
1558
1559 # {{{ config files
1560 config_netconfig(){
1561  if checkbootparam netconfig ; then
1562   CONFIG="$(getbootparam 'netconfig' 2>>$DEBUG)"
1563   CONFIGFILE='/tmp/netconfig.grml'
1564
1565   getconfig() {
1566   wget --timeout=10 --dns-timeout=10  --connect-timeout=10 \
1567        --read-timeout=10 $CONFIG -O $CONFIGFILE && return 0 || return 1
1568   }
1569   einfo "Trying to get ${WHITE}${CONFIG}${NORMAL}"
1570   counter=10
1571   while ! getconfig && [[ "$counter" != 0 ]] ; do
1572     echo -n "Sleeping for 5 seconds and trying to get config again... "
1573     counter=$(( counter-1 ))
1574     echo "$counter tries left" ; sleep 1
1575   done
1576   if [ -r "$CONFIGFILE" ] ; then
1577     einfo "Downloading was successfull." ; eend 0
1578     einfo "md5sum of ${WHITE}${CONFIG}${NORMAL}: "
1579     md5sum $CONFIGFILE ; eend 0
1580     cd / && einfo "Unpacking ${WHITE}${CONFIGFILE}${NORMAL}:" && /usr/bin/unp $CONFIGFILE $EXTRACTOPTIONS ; eend $?
1581   else
1582     einfo "Sorry, could not fetch $CONFIG" ; eend 1
1583   fi
1584  fi
1585 }
1586 # }}}
1587
1588 # {{{ blindsound
1589 config_blindsound(){
1590  if checkbootparam "blind" ; then
1591     beep
1592     flite -o play -t "welcome to the gremel system"
1593  fi
1594 }
1595 # }}}
1596
1597 # {{{ welcome sound
1598 config_welcome(){
1599  if checkbootparam welcome ; then
1600   flite -o play -t "welcome to the gremel system"
1601  fi
1602 }
1603 # }}}
1604
1605 # {{{ fix/workaround for unionfs
1606 fix_unionfs(){
1607   if [ -z "$INSTALLED" ]; then
1608    touch /var/cache/apt/*cache.bin
1609   fi
1610 }
1611 # }}}
1612
1613 # {{{ create all /mnt-directories
1614 create_mnt_dirs(){
1615   ewarn "create_mnt_dirs is deprecated as grml-rebuildfstab does all we need."
1616   ewarn "Please set CONFIG_CREATE_MNT_DIRS='no' in /etc/grml/autoconfig" ; eend 0
1617 }
1618 # }}}
1619
1620 # {{{ start X window system via grml-x
1621 config_x_startup(){
1622 if checkbootparam startx ; then
1623  if [ -x /usr/X11R6/bin/X ] ; then
1624   if [ -z "$INSTALLED" ] ; then
1625    WINDOWMANAGER="$(getbootparam 'startx' 2>>$DEBUG)"
1626    if [ -z "$WINDOWMANAGER" ] ; then
1627      einfo "No window manager specified. Taking ${WHITE}wm-ng${NORMAL} as default." && eend 0
1628      WINDOWMANAGER="wm-ng"
1629    else
1630      einfo "Window manager ${WHITE}${WINDOWMANAGER}${NORMAL} found as bootoption." && eend 0
1631    fi
1632    einfo "Changing to runlevel 5 for starting grml-x ${WINDOWMANAGER}. Just exit X windows system to get full featured consoles."
1633    config_userfstab || fstabuser='grml'
1634  cat>|/etc/init.d/xstartup<<EOF
1635 #!/bin/sh
1636 # su - $fstabuser -c 'grml-x "$WINDOWMANAGER"'
1637 sudo -u $fstabuser -i /usr/bin/grml-x $WINDOWMANAGER 1>>$DEBUG
1638 EOF
1639    chmod 755 /etc/init.d/xstartup
1640
1641    sed -i 's#^6:.*#6:2345:respawn:/bin/zsh --login -c "/etc/init.d/xstartup ; /bin/zsh"#' /etc/inittab
1642
1643    /sbin/telinit q ; eend $?
1644
1645    if grep -q '^allowed_users=' /etc/X11/Xwrapper.config ; then
1646       sed -i 's/^allowed_users=.*/allowed_users=anybody/' /etc/X11/Xwrapper.config
1647    else
1648       echo 'allowed_users=anybody' >> /etc/X11/Xwrapper.config
1649    fi
1650
1651   else
1652     eerror "We are not running from CD - startx will not work, skipping it.
1653      Please use something like xdm, gdm or kdm for starting X on a harddisk system!" ; eend 1
1654   fi
1655  else
1656    eerror "/usr/X11R6/bin/X is not present on this grml flavour.
1657    Boot parameter startx does not work therefore." ; eend 1
1658  fi
1659 fi
1660 }
1661 # }}}
1662
1663 # {{{ configuration framework
1664 config_extract(){
1665 if checkbootparam extract ; then
1666  EXTRACT="$(getbootparam 'extract' 2>>$DEBUG)"
1667  EXTRACTOPTIONS="-- -x $EXTRACT"
1668 fi
1669 }
1670
1671 config_automount(){
1672 if checkbootparam noautoconfig -o checkbootparam forensic ; then
1673   ewarn "Skipping running automount of device(s) labeled GRMLCFG as requested." ; eend 0
1674 else
1675  if [ -z "$INSTALLED" ] ; then
1676   einfo "Searching for device(s) labeled with GRMLCFG." ; eend 0
1677   eindent
1678   [ -d /mnt/grml ] || mkdir /mnt/grml
1679   umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1680 # We do need the following fix so floppy disk is available to blkid in any case :-/
1681   if [ -r /dev/fd0 ] ; then
1682      einfo "Floppy device detected. Trying to access floppy disk. (Disable this via boot option: noautoconfig)"
1683 #     dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1
1684      if timeout 4 dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1 ; then
1685         blkid /dev/fd0 1>>$DEBUG 2>&1
1686      fi
1687   fi
1688   DEVICE=$(blkid -t LABEL=GRMLCFG | head -1 | awk -F: '{print $1}')
1689   [ -n "$DEVICE" ] && mount -t auto -o ro $DEVICE /mnt/grml ; RC="$?"
1690   if [[ $RC == 0 ]]; then
1691     einfo "Mounting device $DEVICE labeled GRMLCFG succeeded." ; eend 0
1692
1693     CONFIG=''
1694     CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1695     if [ -n "$CONFIG" ]; then
1696       einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1697       cd /
1698       unp $CONFIG $EXTRACTOPTIONS ; eend $?
1699     else
1700       ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1701     fi
1702
1703     SCRIPT=''
1704     SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1705     if [ -n "$SCRIPT" ]; then
1706       einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1707       $SCRIPT ; eend $?
1708     fi
1709     grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1710   else
1711     ewarn "No devices with label GRMLCFG found." ; eend 0
1712   fi
1713   eoutdent
1714  fi
1715 fi
1716 }
1717
1718 config_myconfig(){
1719
1720 if checkbootparam "config" ; then
1721   CONFIG="$(getbootparam 'config' 2>>$DEBUG)"
1722   [ -z "$CONFIG" ] && CONFIG='config.tbz'
1723   einfo "Bootoption config found. config is set to: $CONFIG"
1724   eindent
1725     einfo "Trying to extract configuration file ${CONFIG}:"
1726     cd / && unp /cdrom/config/$CONFIG $EXTRACTOPTIONS ; eend $?
1727   eoutdent
1728 fi
1729
1730 if checkbootparam myconfig ; then
1731  MOUNTDEVICE="$(getbootparam 'myconfig' 2>>$DEBUG)"
1732  if [ -n "$MOUNTDEVICE" ]; then
1733    if checkbootparam file ; then
1734     FILENAME="$(getbootparam 'file' 2>>$DEBUG)"
1735     [ -n "$FILENAME" ] || FILENAME='config.tbz'
1736    fi
1737    [ -d /mnt/grml ] || mkdir /mnt/grml
1738    umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1739    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1740     if [[ $RC == 0 ]]; then
1741       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1742       eindent
1743       CONFIG=''
1744       CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1745       if [ -n "$CONFIG" ]; then
1746         einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1747         cd /
1748         unp $CONFIG $EXTRACTOPTIONS ; eend $?
1749       else
1750         ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1751       fi
1752
1753       SCRIPT=''
1754       SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1755       if [ -n "$SCRIPT" ]; then
1756         einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1757         $SCRIPT ; eend $?
1758       fi
1759       eoutdent
1760     else
1761       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1762     fi # mount $MOUNTDEVICE
1763    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1764  else
1765    einfo "Sorry, no device for bootoption myconfig provided. Skipping." ; eend 1
1766  fi # [ -n "$MOUNTDEVICE" ]
1767 fi # checkbootparam myconfig
1768
1769 if checkbootparam "partconf" ; then
1770  MOUNTDEVICE="$(getbootparam 'partconf' 2>>$DEBUG)"
1771  if [ -n "$MOUNTDEVICE" ]; then
1772    [ -d /mnt/grml ] || mkdir /mnt/grml
1773    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1774     if [[ $RC == 0 ]]; then
1775       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1776       einfo "Copying files from $MOUNTDEVICE over grml system."
1777       for file in `cat /etc/grml/partconf` ; do
1778         [ -d /mnt/grml/$file ] && cp -a /mnt/grml/${file}* ${file} && echo "copied: $file"
1779         [ -f /mnt/grml/$file ] && cp -a /mnt/grml/${file}  ${file} && echo "copied: $file"
1780       done && eend 0
1781     else
1782       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1783     fi # mount $MOUNTDEVICE
1784    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1785  else
1786    einfo "Sorry, no device for bootoption partconf provided. Skipping." ; eend 1
1787  fi # [ -n "$MOUNTDEVICE" ]
1788 fi
1789 }
1790 # }}}
1791
1792 # {{{ /cdrom/.*-options
1793 config_debs(){
1794 if checkbootparam "debs" ; then
1795   DEBS="$(getbootparam 'debs' 2>>$DEBUG)"
1796   einfo "Tring to install debian package(s) ${DEBS}"
1797   dpkg -i /cdrom/debs/$DEBS* ; eend $?
1798 fi
1799 }
1800
1801 config_scripts(){
1802 if checkbootparam "scripts" ; then
1803   SCRIPTS="$(getbootparam 'scripts' 2>>$DEBUG)"
1804   [ -z "$SCRIPTS" ] && SCRIPTS='grml.sh'
1805   einfo "Bootparameter scripts found. Trying to execute ${SCRIPTS}:"
1806   sh -c /cdrom/scripts/$SCRIPTS ; eend $?
1807 fi
1808 }
1809 # }}}
1810
1811 # {{{ distcc
1812 config_distcc(){
1813 if checkbootparam "distcc" ; then
1814  OPTIONS="$(getbootparam distcc 2>>$DEBUG)"
1815  if [ -n "$OPTIONS" ]; then
1816     NET=""
1817     INTERFACE=""
1818     if [ -n "$OPTIONS" ]; then
1819       NET="${OPTIONS%%,*}"
1820       R="${OPTIONS#*,}"
1821       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1822         OPTIONS="$R"
1823         INTERFACE="${OPTIONS%%,*}"
1824         R="${OPTIONS#*,}"
1825       fi
1826     fi
1827  fi
1828  CONFIG=/etc/default/distcc
1829  sed -i "s#^STARTDISTCC=.*#STARTDISTCC=YES#"  $CONFIG
1830  sed -i "s#^ALLOWEDNETS=.*#ALLOWEDNETS=$NET#" $CONFIG
1831
1832  if [ -n "$INTERFACE" ] ; then
1833    IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1834
1835    counter=10
1836    while [ -z "$IP" ] && [[ "$counter" != 0 ]] ; do
1837      counter=$(( counter-1 ))
1838      ewarn "No ip address for $INTERFACE found. Sleeping for 3 seconds. $counter tries left."
1839      sleep 3
1840      IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1841    done
1842  fi
1843
1844  if [ -n "$IP" ] ; then
1845    sed -i "s#^LISTENER=.*#LISTENER=$IP#"      $CONFIG
1846
1847    einfo "Bootoption distcc found. Preparing setup for distcc daemon."
1848    eindent
1849     id distccd >/dev/null 2>&1 || \
1850     (
1851       einfo "Creating distcc user" ; \
1852       adduser --quiet --system --ingroup nogroup --home / --no-create-home distccd ; eend $?
1853     )
1854
1855     einfo "Starting distcc for network ${NET}, listening on ${IP}."
1856    /etc/init.d/distcc start 1>/dev/null ; eend $?
1857    eoutdent
1858  else
1859    eerror "No ip address for $INTERFACE found. distcc can not be used without it." ; eend 1
1860  fi
1861 fi
1862
1863 if checkbootparam "gcc"; then
1864  GCC="$(getbootparam gcc 2>>$DEBUG)"
1865  eindent
1866  einfo "Pointing /usr/bin/gcc to /usr/bin/gcc-${GCC}."
1867  eoutdent
1868  rm -f /usr/bin/gcc
1869  ln -s /usr/bin/gcc-${GCC} /usr/bin/gcc ; eend $?
1870 fi
1871
1872 if checkbootparam "gpp"; then
1873  GPP="$(getbootparam gpp 2>>$DEBUG)"
1874  eindent
1875   einfo "Pointing /usr/bin/g++ to /usr/bin/g++-${GPP}."
1876   if [ -x /usr/bin/g++-${GPP} ] ; then
1877      rm -f /usr/bin/g++
1878      ln -s /usr/bin/g++-${GPP} /usr/bin/g++ ; eend $?
1879   fi
1880   einfo "Pointing /usr/bin/cpp to /usr/bin/cpp-${GPP}."
1881   if [ -x /usr/bin/cpp-${GPP} ] ; then
1882      rm -f /usr/bin/cpp
1883      ln -s /usr/bin/cpp-${GPP} /usr/bin/cpp ; eend $?
1884   fi
1885  eoutdent
1886 fi
1887
1888 }
1889 # }}}
1890
1891 # {{{ load modules
1892 # Notice: use it only on live-cd system, if running from harddisk please
1893 # add modules to /etc/modules and activate /etc/init.d/module-init-tools
1894 # in /etc/runlevel.conf
1895 config_modules(){
1896 MODULES_FILE=/etc/grml/modules
1897 if checkbootparam nomodules ; then
1898   ewarn "Skipping loading of modules defined in ${MODULES_FILE} as requested." ; eend 0
1899 elif [ -z "$INSTALLED" ]; then
1900  if [ -r $MODULES_FILE ] ; then
1901   einfo "Loading modules specified in ${MODULES_FILE}:"
1902   eindent
1903   grep '^[^#]' $MODULES_FILE | \
1904   while read module args; do
1905     [ "$module" ] || continue
1906       einfo "${module}"
1907       modprobe $module $args ; eend $?
1908   done
1909   eoutdent
1910  else
1911   ewarn "File $MODULES_FILE does not exist. Skipping loading of specific modules." ; eend 1
1912  fi
1913 fi
1914 }
1915 # }}}
1916
1917 # {{{ 915resolution
1918 config_915resolution(){
1919 if checkbootparam "915resolution" ; then
1920  OPTIONS="$(getbootparam 915resolution 2>>$DEBUG)"
1921   if [ -x /usr/sbin/915resolution ]; then
1922     CMD=915resolution
1923     MODE=""
1924     XRESO=""
1925     YRESO=""
1926     if [ -n "$OPTIONS" ]; then
1927       # Extra options
1928       MODE="${OPTIONS%%,*}"
1929       R="${OPTIONS#*,}"
1930       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1931         OPTIONS="$R"
1932         XRESO="${OPTIONS%%,*}"
1933         R="${OPTIONS#*,}"
1934         if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1935           OPTIONS="$R"
1936           YRESO="${OPTIONS%%,*}"
1937           R="${OPTIONS#*,}"
1938         fi
1939       fi
1940     fi
1941     einfo "Running 915resolution with options ${MODE} ${XRESO} ${YRESO}."
1942     [ -n "$MODE" ] && [ -n "$XRESO"  ] && [ -n "$YRESO" ]  && ( sh -c "$CMD $MODE $XRESO $YRESO" & )
1943     eend 0
1944   fi
1945 fi
1946 }
1947 # }}}
1948
1949 # {{{ SW-RAID
1950 config_swraid(){
1951   if [ -z "$INSTALLED" ] ; then
1952   # notice: checkbootparam "forensic" is just for users who don't know how to really use the bootoption
1953   if checkbootparam 'noraid'   -o checkbootparam 'noswraid' -o \
1954      checkbootparam 'forensic' -o checkbootparam 'raid=noautodetect' ; then
1955      ewarn "Skipping SW-RAID code as requested on boot commandline." ; eend 0
1956   else
1957     if ! [ -x /sbin/mdadm ] ; then
1958        eerror "mdadm not available, can not execute it." ; eend 1
1959     else
1960
1961        # if ! egrep -qv '^(MAILADDR.*|#.*|)$' /etc/mdadm/mdadm.conf 2>>$DEBUG ; then
1962        # find out whether we have a valid configuration file already
1963        if ! grep -q ARRAY /etc/mdadm/mdadm.conf 2>>$DEBUG ; then
1964           einfo "Creating /etc/mdadm/mdadm.conf for use with mdadm."
1965           [ -r /etc/mdadm/mdadm.conf ] && mv /etc/mdadm/mdadm.conf /etc/mdadm/mdadm.conf.old
1966           MDADM_MAILADDR__='root' /usr/share/mdadm/mkconf > /etc/mdadm/mdadm.conf ; eend $?
1967         else
1968           ewarn "/etc/mdadm/mdadm.conf looks like a configured mdadm setup, will not touch it." ; eend 0
1969        fi
1970
1971        if ! checkbootparam 'swraid' ; then
1972           eindent
1973           einfo "Just run 'Start mdadm-raid' to assemble md arrays or boot using 'swraid' as bootoption for autostart."
1974           eoutdent
1975        else
1976           einfo "Bootoption swraid found. Searching for software RAID arrays:"
1977           eindent
1978            IFSOLD=${IFS:-}
1979            IFS='
1980 '
1981            for line in $(mdadm --assemble --scan --auto=yes --symlink=no 2>&1) ; do
1982                case $line in
1983                  *'No arrays found'*)
1984                    ewarn "$line" ; eend 0
1985                    ;;
1986                  *)
1987                    einfo "$line" ; eend 0
1988                    ;;
1989                esac
1990            done
1991            IFS=$IFSOLD
1992          eoutdent
1993
1994          if [ -r /proc/mdstat ] ; then
1995             eindent
1996             MDSTAT=$(grep '^md[0-9]' /proc/mdstat)
1997             if [ -z "$MDSTAT" ] ; then
1998                ewarn "No active arrays found" ; eend 0
1999             else
2000                IFSOLD=${IFS:-}
2001                IFS='
2002 '
2003                for line in $(grep '^md[0-9]' /proc/mdstat) ; do
2004                    einfo "active arrays: $line" ; eend 0
2005                done
2006                IFS=$IFSOLD
2007             fi
2008             eoutdent
2009          fi # /proc/mdstat
2010        fi # bootoption swraid
2011
2012      fi # is /sbin/mdadm executable?
2013   fi # check for bootoptions
2014   fi # run only in live-cd mode
2015 }
2016 # }}}
2017
2018 # {{{ debnet: setup network based on an existing one found on a partition
2019 config_debnet(){
2020 if checkbootparam "debnet" ; then
2021  iszsh && setopt shwordsplit
2022  DEVICES="$(< /proc/partitions tail -n +3 | awk '{print "/dev/"$4}' | tr "\n" " ")"
2023  DEVICES="$DEVICES $(ls /dev/mapper/*)"
2024  FOUND_DEBNET=""
2025
2026  einfo "Bootoption 'debnet' found. Searching for Debian network configuration: "
2027  eindent
2028  if ! mount | grep '/mnt ' 1>/dev/null 2>&1 ; then
2029     for i in $DEVICES; do
2030      if mount -o ro -t auto "$i" /mnt >/dev/null 2>&1; then
2031          einfo "Scanning on $i"
2032        if [ -f /mnt/etc/network/interfaces ]; then
2033          einfo "/etc/network/interfaces found on ${i}" ; eend 0
2034          FOUND_DEBNET="$i"
2035          break
2036        fi
2037        umount /mnt
2038      fi
2039     done
2040
2041    if [ -n "$FOUND_DEBNET" ]; then
2042      einfo "Stopping network."
2043        pump -k 1>/dev/null 2>&1
2044        /etc/init.d/networking stop 1>/dev/null 2>&1 ; eend $?
2045      einfo "Copying Debian network configuration from $FOUND_DEBNET to running system."
2046        rm -rf /etc/network/run
2047        cp -a /mnt/etc/network /etc
2048        rm -rf /etc/network/run
2049        mkdir /etc/network/run
2050        umount /mnt ; eend $?
2051      einfo "Starting network."
2052        /etc/init.d/networking start ; eend $?
2053    else
2054      eerror "/etc/network/interfaces not found." ; eend 1
2055    fi
2056    eoutdent
2057  else
2058   eerror "Error: /mnt already mounted." ; eend 1
2059  fi
2060 fi
2061 }
2062 # }}}
2063
2064 # {{{ disable console blanking
2065 config_blanking(){
2066 if checkbootparam "noblank" ; then
2067   einfo "Bootoption noblank found. Disabling monitor blanking."
2068   setterm -blank 0 ; eend $?
2069 fi
2070 }
2071 # }}}
2072
2073 # {{{ grml2hd: automatic installation
2074 config_grml2hd(){
2075
2076 if checkbootparam "user" ; then
2077   NEWUSER=''
2078   NEWUSER="$(getbootparam 'user' 2>>$DEBUG)"
2079   sed -i "s/^NEWUSER=.*/NEWUSER=$NEWUSER/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2080 fi
2081
2082 if checkbootparam "filesystem" ; then
2083   FILESYSTEM=''
2084   FILESYSTEM="$(getbootparam 'filesystem' 2>>$DEBUG)"
2085   sed -i "s/^FILESYSTEM=.*/FILESYSTEM=$FILESYSTEM/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2086 fi
2087
2088 if checkbootparam "partition" ; then
2089   PARTITION=''
2090   PARTITION="$(getbootparam 'partition' 2>>$DEBUG)"
2091   # notice: the following checks whether the given partition is available, if not the skip
2092   # execution of grml2hd as it might result in data loss...
2093   if [ -r $PARTITION ] ; then
2094     sed -i "s#^PARTITION=.*#PARTITION=$PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2095   else
2096     ewarn "Partition $PARTITION does not exist. Skipping execution of grml2hd therefore." ; eend 1
2097   fi
2098 fi
2099
2100 if checkbootparam "mbr" ; then
2101   BOOT_PARTITION=''
2102   BOOT_PARTITION="$(getbootparam 'mbr' 2>>$DEBUG)"
2103   sed -i "s#^BOOT_PARTITION=.*#BOOT_PARTITION=$BOOT_PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2104 fi
2105
2106 if stringinstring "BOOT_IMAGE=grml2hd " "$CMDLINE" ; then
2107   cat>|/usr/bin/grml2hd_noninteractive<<EOF
2108 #!/bin/sh
2109 GRML2HD_NONINTERACTIVE='yes' grml2hd
2110 EOF
2111   chmod 755 /usr/bin/grml2hd_noninteractive
2112   einfo "Bootparameter grml2hd found. Running automatic installation via grml2hd using /etc/grml2hd/config." && eend 0
2113   if [ -z "$GRML2HD_FAIL" ] ; then
2114     screen /usr/bin/grml2hd_noninteractive ; einfo "Invoking a shell, just exit to continue booting..." ; /bin/zsh
2115   else
2116     ewarn "There was an error adjusting /etc/grml2hd/config. Skipping execution of grml2hd for security reasons." ; eend 1
2117   fi
2118 fi
2119 }
2120 # }}}
2121
2122 ### {{{ backwards compatible stuff
2123 config_environment(){
2124   ewarn "config_environment is deprecated. Please set CONFIG_ENVIRONMENT in /etc/grml/autoconfig to 'no'." ; eend 0
2125 }
2126 config_keyboard(){
2127   ewarn "config_keyboard is deprecated. Please set CONFIG_KEYBOARD in /etc/grml/autoconfig to 'no'." ; eend 0
2128 }
2129 # }}}
2130
2131 ## END OF FILE #################################################################
2132 # vim:foldmethod=marker