config_vmware(): fix small syntax error
[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${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 "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 "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   if ! [ -x /etc/init.d/powernowd ] ; then
1215     ewarn "Skipping CPU detection as powernowd dependencies are not fulfilled." ; eend 1
1216   elif [ ! -e /lib/modules/${KERNEL}/kernel/arch/i386/kernel/cpu/cpufreq -o ! -e /lib/modules/${KERNEL}/kernel/drivers/cpufreq ] ; then
1217     ewarn "Skipping CPU detection as module dependencies are not fulfilled." ; eend 1
1218   else
1219     if [[ `grep -c processor /proc/cpuinfo` -gt 1 ]] ; then
1220       einfo "Detecting CPU:"
1221       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)
1222       echo $CPU | sed 's/ \{1,\}/ /g'
1223       eend 0
1224     else
1225       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
1226     fi
1227     if /usr/sbin/laptop-detect ; then
1228     einfo "Detected Laptop - trying to use cpu frequency scaling:"
1229 #      loadcpumod() {
1230 #      for module in /lib/modules/${KERNEL}/kernel/arch/i386/kernel/cpu/cpufreq/*.ko /lib/modules/${KERNEL}/kernel/drivers/cpufreq/*.ko ; do
1231 #    # modprobe ${${${${(f)"$(_call_program modules ${(M)words[1]##*/}modprobe -l | grep cpufreq 2>>$DEBUG)"}:#}##*/}%.*}
1232 #        modprobe `basename ${module%%\.ko}` 1>>$DEBUG 2>&1
1233 #      done
1234 #      }
1235 #    CPU=$(grep 'model name' /proc/cpuinfo | cut -b14- | head -1)
1236 #    eindent
1237 #    if [[ $CPU = *Intel* ]] ; then
1238 #      einfo "Detected CPU is of type Intel - loading modules and starting cpudyn."
1239 #      local DETECTED=1
1240 #      loadcpumod
1241 #      /etc/init.d/cpudyn start 1>>$DEBUG ; eend $?
1242 #    fi
1243 #    if [[ $CPU = *AMD* ]] ; then
1244 #      einfo "Detected CPU is of type AMD - loading modules and starting powernowd."
1245 #      local DETECTED=1
1246 #      loadcpumod
1247 #      /etc/init.d/powernowd start 1>>$DEBUG ; eend $?
1248 #    fi
1249
1250      eindent
1251      if [ -r /usr/bin/cpufreq-detect.sh ] ; then
1252        . /usr/bin/cpufreq-detect.sh
1253        if [ -n "$MODULE" -a "$MODULE" != none ]; then
1254          einfo "Loading module ${MODULE} and starting powernowd."
1255          modprobe cpufreq_userspace 1>>$DEBUG
1256          modprobe "$MODULE" 1>>$DEBUG || modprobe "$MODULE_FALLBACK" 1>>$DEBUG
1257          /etc/init.d/powernowd start 1>>$DEBUG ; eend $?
1258        else
1259          ewarn "Could not detect an appropriate CPU for use with powernowd - skipping." && eend 1
1260        fi
1261      fi
1262      eoutdent
1263    fi
1264   fi
1265 fi
1266 }
1267 # }}}
1268
1269 # {{{ autostart of ssh
1270 config_ssh(){
1271 if checkbootparam ssh ; then
1272   SSH_PASSWD="$(getbootparam 'ssh' 2>>$DEBUG)"
1273   einfo "Bootoption passwd found."
1274   if [ -n "$SSH_PASSWD" ] ; then
1275     echo "grml:$SSH_PASSWD" | chpasswd -m
1276     einfo "Starting secure shell server in background."
1277     /etc/init.d/rmnologin start 1>>$DEBUG 2>>$DEBUG
1278     /etc/init.d/ssh start 1>>$DEBUG 2>>$DEBUG &
1279     eend 0
1280   else
1281     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1282   fi
1283   eindent
1284     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1285   eoutdent
1286 fi
1287 }
1288 # }}}
1289
1290 # {{{ set password for user grml
1291 config_passwd(){
1292 if checkbootparam passwd >>$DEBUG 2>&1; then
1293   einfo "Bootoption passwd found."
1294   PASSWD="$(getbootparam 'passwd' 2>>$DEBUG)"
1295   if [ -n "$PASSWD" ] ; then
1296     echo "grml:$PASSWD" | chpasswd -m ; eend $?
1297   else
1298     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1299   fi
1300   eindent
1301     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1302   eoutdent
1303 fi
1304 }
1305 # }}}
1306
1307 # {{{ Check for persistent homedir option and eventually mount /home from there, or use a loopback file.
1308 config_homedir(){
1309 if checkbootparam home ; then
1310 HOMEDIR="$(getbootparam home)"
1311 MYHOMEDEVICE=""
1312 MYHOMEMOUNTPOINT=""
1313 MYHOMEDIR=""
1314 if [ -n "$HOMEDIR" ]; then
1315   einfo "Bootoption home detected." && eend 0
1316   case "$HOMEDIR" in
1317     /dev/*)
1318     MYHOMEDEVICE="${HOMEDIR##/dev/}"
1319     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1320     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1321     MYHOMEDIR="/mnt/${HOMEDIR##/dev/}"
1322   ;;
1323     /mnt/*)
1324     MYHOMEDEVICE="${HOMEDIR##/mnt/}"
1325     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1326     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1327     MYHOMEDIR="$HOMEDIR"
1328   ;;
1329     [Aa][Uu][Tt][Oo]|[Ss][Cc][Aa][Nn]|[Ff][Ii][Nn][Dd])
1330     MYHOMEDIR="$(findfile grml.img)"
1331     MYHOMEDEVICE="${MYHOMEDIR##/mnt/}"
1332     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1333     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1334   ;;
1335   *)
1336     eerror "Invalid home= option '$HOMEDIR' specified (must start with /dev/ or /mnt/ or 'scan')." ; eend 1
1337     eerror "Option ignored." ; eend 1
1338   ;;
1339   esac
1340 fi
1341
1342 if [ -n "$MYHOMEDIR" ]; then
1343   if trymount "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"; then
1344     [ -f "$MYHOMEMOUNTPOINT/grml.img" ] && MYHOMEDIR="$MYHOMEMOUNTPOINT/grml.img"
1345     while read device mountpoint fs relax; do
1346       case "$mountpoint" in *$MYHOMEMOUNTPOINT*)
1347         case "$fs" in *[Nn][Tt][Ff][Ss]*)
1348           umount "$MYHOMEMOUNTPOINT"; eerror "Error: will not mount NTFS filesystem on $MYHOMEDEVICE read/write!" ; eend 1
1349           break
1350         ;;
1351         *[Ff][Aa][Tt]*)
1352         # Note: This currently won't work with encrypted partitions
1353         umount "$MYHOMEMOUNTPOINT"; mount -t vfat -o rw,uid=grml,gid=grml,umask=002 "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"
1354         if [ ! -f "$MYHOMEDIR" ]; then
1355           ewarn "WARNING: FAT32 is not a good filesystem option for /home/grml (missing socket/symlink support)."
1356           ewarn "WARNING: Better use an ext2 loopback file on this device, and boot with home=$MYHOMEDEVICE/grml.img."
1357         fi
1358         ;;
1359       esac
1360       if mount -o remount,rw "$MYHOMEMOUNTPOINT"; then
1361         einfo "Mounting ${WHITE}$MYHOMEDIR${NORMAL} as ${WHITE}/home/grml${NORMAL}."
1362         if [ -f "$MYHOMEDIR" ]; then
1363           # It's a loopback file, mount it over the /home/grml directory
1364           trymount "$MYHOMEDIR" /home/grml
1365           RC="$?"
1366           [ "$RC" = "0" ] && ERROR="$(mount -o remount,rw /home/grml 2>&1)"
1367           RC="$?"
1368         else
1369           # Do a --bind mount
1370           ERROR="$(mount --bind "$MYHOMEDIR" /home/grml 2>&1)"
1371           RC="$?"
1372         fi
1373         [ "$RC" = "0" ] && eend 0 || ( eerror "${ERROR}" ; eend 1 )
1374       fi
1375       break
1376       ;;
1377     esac
1378   done <<EOT
1379 $(cat /proc/mounts)
1380 EOT
1381   fi
1382 fi
1383 fi # checkbootparam home
1384 }
1385 # }}}
1386
1387 # {{{ Check for scripts on CD-ROM
1388 config_cdrom_scripts(){
1389 if checkbootparam "script"; then
1390   for script in /cdrom/scripts/* ; do
1391     einfo " grml script found on CD, executing ${WHITE}${script}${NORMAL}."
1392     . $script
1393   done
1394 fi
1395 }
1396 # }}}
1397
1398 # {{{ Sound
1399 config_mixer(){
1400 if ! [ -x /usr/bin/aumix ] ; then
1401   eerror "aumix binary not available. Can not set sound volumes therefore." ; eend 1
1402 else
1403
1404   if checkbootparam vol ; then
1405     VOL="$(getbootparam 'vol' 2>>$DEBUG)"
1406     if [ -z "$VOL" ] ; then
1407       eerror "Bootoption vol found but no volume level/parameter given. Using defaults." ; eend 1
1408       VOL='75' # default
1409     fi
1410   else
1411     VOL='75' # default
1412   fi
1413
1414   if checkbootparam nosound ; then
1415     einfo "Muting sound devices on request."
1416     # some IBM notebooks require the following stuff:
1417     if [ -x /usr/bin/amixer ] ; then
1418        if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1419           amixer set Front unmute 1>/dev/null
1420           amixer set Front 0% 1>/dev/null
1421        fi
1422     fi
1423     ERROR=$(aumix -w 0 -v 0 -p 0 -m 0 2>&1) ; RC=$?
1424     if [ -n "$ERROR" ] ; then
1425        eindent
1426        eerror "Problem muting sound devices: $ERROR"
1427        eoutdent
1428     fi
1429     eend $RC
1430   elif [ -z "$INSTALLED" ]; then
1431       einfo "Setting mixer volumes to level ${WHITE}${VOL}${NORMAL}."
1432       # some IBM notebooks require the following stuff:
1433       if [ -x /usr/bin/amixer ] ; then
1434          if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1435             amixer set Front unmute 1>/dev/null
1436             amixer set Front ${VOL}% 1>/dev/null
1437          fi
1438       fi
1439       ERROR=$(aumix -w $VOL -v $VOL -p $VOL -m $VOL 2>&1) ; RC=$?
1440       if [ -n "$ERROR" ] ; then
1441          eindent
1442          eerror "Problem setting mixer volumes: $ERROR"
1443          eoutdent
1444       fi
1445       eend $RC
1446   fi
1447
1448 fi
1449 }
1450 # }}}
1451
1452 # {{{ modem detection
1453 config_modem(){
1454 if checkbootparam "nomodem"; then
1455   ewarn "Skipping check for AC97 modem controller as requested on boot commandline." ; eend 0
1456 else
1457   if [ -x /etc/init.d/sl-modem-daemon ] ; then
1458    if lspci | grep Intel | grep -q "AC'97 Modem Controller" ; then
1459      einfo "AC97 modem controller detected. Starting sl-modem-daemon in background."
1460      /etc/init.d/sl-modem-daemon start >>$DEBUG &
1461      eend 0
1462    fi
1463   fi
1464 fi
1465 }
1466 # }}}
1467
1468 # {{{ keyboard add-ons
1469 config_setkeycodes(){
1470 if checkbootparam "setkeycodes" ; then
1471  einfo "Setting keycodes as requested via bootparameter 'setkeycodes'."
1472   # MS MM keyboard add-on
1473   # fix
1474   setkeycodes e001 126 &>/dev/null
1475   setkeycodes e059 127 &>/dev/null
1476   # fn keys
1477   setkeycodes e03b 59 &>/dev/null
1478   setkeycodes e008 60 &>/dev/null
1479   setkeycodes e007 61 &>/dev/null
1480   setkeycodes e03e 62 &>/dev/null
1481   setkeycodes e03f 63 &>/dev/null
1482   setkeycodes e040 64 &>/dev/null
1483   setkeycodes e041 65 &>/dev/null
1484   setkeycodes e042 66 &>/dev/null
1485   setkeycodes e043 67 &>/dev/null
1486   setkeycodes e023 68 &>/dev/null
1487   setkeycodes e057 87 &>/dev/null
1488   setkeycodes e058 88 &>/dev/null
1489   # hp keycodes
1490   setkeycodes e00a 89 e008 90 &>/dev/null
1491  eend 0
1492 fi
1493 }
1494 # }}}
1495
1496 # {{{ wondershaper
1497 config_wondershaper(){
1498  if checkbootparam "wondershaper" ; then
1499     WONDER="$(getbootparam wondershaper 2>>$DEBUG)"
1500     CMD=wondershaper
1501     DEVICE=""
1502     DOWNSTREAM=""
1503     UPSTREAM=""
1504     if [ -n "$WONDER" ]; then
1505       # Extra options
1506       DEVICE="${WONDER%%,*}"
1507       R="${WONDER#*,}"
1508       if [ -n "$R" -a "$R" != "$WONDER" ]; then
1509         WONDER="$R"
1510         DOWNSTREAM="${WONDER%%,*}"
1511         R="${WONDER#*,}"
1512         if [ -n "$R" -a "$R" != "$WONDER" ]; then
1513           WONDER="$R"
1514           UPSTREAM="${WONDER%%,*}"
1515           R="${WONDER#*,}"
1516         fi
1517       fi
1518     fi
1519     [ -n "$DEVICE" ]     && CMD="$CMD $DEVICE"
1520     [ -n "$DOWNSTREAM" ] && CMD="$CMD $DOWNSTREAM"
1521     [ -n "$UPSTREAM" ]   && CMD="$CMD $UPSTREAM"
1522     einfo "Starting wondershaper (${CMD}) in background."
1523     ( sh -c $CMD & ) && eend 0
1524  fi
1525 }
1526 # }}}
1527
1528 # {{{ syslog-ng
1529 config_syslog(){
1530  if checkbootparam "nosyslog"; then
1531   ewarn "Not starting syslog-ng as requested on boot commandline." ; eend 0
1532  else
1533   einfo "Starting syslog-ng in background."
1534   /etc/init.d/syslog-ng start 1>>$DEBUG &
1535   eend 0
1536  fi
1537 }
1538 # }}}
1539
1540 # {{{ gpm
1541 config_gpm(){
1542  if checkbootparam "nogpm"; then
1543   ewarn "Not starting GPM as requested on boot commandline." ; eend 0
1544  else
1545   einfo "Starting gpm in background."
1546 #  /etc/init.d/gpm start 1>>$DEBUG &
1547   ( while [ ! -e /dev/psaux ]; do sleep 5; done; /etc/init.d/gpm start 1>>$DEBUG ) &
1548   eend 0
1549  fi
1550 }
1551 # }}}
1552
1553 # {{{ services
1554 config_services(){
1555  if checkbootparam "services" ; then
1556     SERVICE="$(getbootparam services 2>>$DEBUG)"
1557     SERVICELIST=$(echo "$SERVICE" | sed 's/,/\\n/g')
1558     SERVICENL=$(echo "$SERVICE" | sed 's/,/ /g')
1559     einfo "Starting service(s) ${SERVICENL} in background."
1560     for service in $(echo -e $SERVICELIST) ; do
1561        /etc/init.d/${service} start 1>>$DEBUG &
1562     done
1563     [ "$?" == "0" ] ; eend $?
1564  fi
1565 }
1566 # }}}
1567
1568 # {{{ config files
1569 config_netconfig(){
1570  if checkbootparam netconfig ; then
1571   CONFIG="$(getbootparam 'netconfig' 2>>$DEBUG)"
1572   CONFIGFILE='/tmp/netconfig.grml'
1573
1574   getconfig() {
1575   wget --timeout=10 --dns-timeout=10  --connect-timeout=10 \
1576        --read-timeout=10 $CONFIG -O $CONFIGFILE && return 0 || return 1
1577   }
1578   einfo "Trying to get ${WHITE}${CONFIG}${NORMAL}"
1579   counter=10
1580   while ! getconfig && [[ "$counter" != 0 ]] ; do
1581     echo -n "Sleeping for 5 seconds and trying to get config again... "
1582     counter=$(( counter-1 ))
1583     echo "$counter tries left" ; sleep 1
1584   done
1585   if [ -r "$CONFIGFILE" ] ; then
1586     einfo "Downloading was successfull." ; eend 0
1587     einfo "md5sum of ${WHITE}${CONFIG}${NORMAL}: "
1588     md5sum $CONFIGFILE ; eend 0
1589     cd / && einfo "Unpacking ${WHITE}${CONFIGFILE}${NORMAL}:" && /usr/bin/unp $CONFIGFILE $EXTRACTOPTIONS ; eend $?
1590   else
1591     einfo "Sorry, could not fetch $CONFIG" ; eend 1
1592   fi
1593  fi
1594 }
1595 # }}}
1596
1597 # {{{ blindsound
1598 config_blindsound(){
1599  if checkbootparam "blind" ; then
1600     beep
1601     flite -o play -t "welcome to the gremel system"
1602  fi
1603 }
1604 # }}}
1605
1606 # {{{ welcome sound
1607 config_welcome(){
1608  if checkbootparam welcome ; then
1609   flite -o play -t "welcome to the gremel system"
1610  fi
1611 }
1612 # }}}
1613
1614 # {{{ fix/workaround for unionfs
1615 fix_unionfs(){
1616   if [ -z "$INSTALLED" ]; then
1617    touch /var/cache/apt/*cache.bin
1618   fi
1619 }
1620 # }}}
1621
1622 # {{{ create all /mnt-directories
1623 create_mnt_dirs(){
1624   ewarn "create_mnt_dirs is deprecated as grml-rebuildfstab does all we need."
1625   ewarn "Please set CONFIG_CREATE_MNT_DIRS='no' in /etc/grml/autoconfig" ; eend 0
1626 }
1627 # }}}
1628
1629 # {{{ start X window system via grml-x
1630 config_x_startup(){
1631 if checkbootparam startx ; then
1632  if [ -x /usr/X11R6/bin/X ] ; then
1633   if [ -z "$INSTALLED" ] ; then
1634    WINDOWMANAGER="$(getbootparam 'startx' 2>>$DEBUG)"
1635    if [ -z "$WINDOWMANAGER" ] ; then
1636      einfo "No window manager specified. Taking ${WHITE}wm-ng${NORMAL} as default." && eend 0
1637      WINDOWMANAGER="wm-ng"
1638    else
1639      einfo "Window manager ${WHITE}${WINDOWMANAGER}${NORMAL} found as bootoption." && eend 0
1640    fi
1641    einfo "Changing to runlevel 5 for starting grml-x ${WINDOWMANAGER}. Just exit X windows system to get full featured consoles."
1642    config_userfstab || fstabuser='grml'
1643  cat>|/etc/init.d/xstartup<<EOF
1644 #!/bin/sh
1645 # su - $fstabuser -c 'grml-x "$WINDOWMANAGER"'
1646 sudo -u $fstabuser -i /usr/bin/grml-x $WINDOWMANAGER 1>>$DEBUG
1647 EOF
1648    chmod 755 /etc/init.d/xstartup
1649
1650    sed -i 's#^6:.*#6:2345:respawn:/bin/zsh --login -c "/etc/init.d/xstartup ; /bin/zsh"#' /etc/inittab
1651    
1652    /sbin/telinit q ; eend $?
1653
1654    if grep -q '^allowed_users=' /etc/X11/Xwrapper.config ; then
1655       sed -i 's/^allowed_users=.*/allowed_users=anybody/' /etc/X11/Xwrapper.config
1656    else
1657       echo 'allowed_users=anybody' >> /etc/X11/Xwrapper.config
1658    fi
1659
1660   else
1661     eerror "We are not running from CD - startx will not work, skipping it.
1662      Please use something like xdm, gdm or kdm for starting X on a harddisk system!" ; eend 1
1663   fi
1664  else
1665    eerror "/usr/X11R6/bin/X is not present on this grml flavour.
1666    Boot parameter startx does not work therefore." ; eend 1
1667  fi
1668 fi
1669 }
1670 # }}}
1671
1672 # {{{ configuration framework
1673 config_extract(){
1674 if checkbootparam extract ; then
1675  EXTRACT="$(getbootparam 'extract' 2>>$DEBUG)"
1676  EXTRACTOPTIONS="-- -x $EXTRACT"
1677 fi
1678 }
1679
1680 config_automount(){
1681 if checkbootparam noautoconfig -o checkbootparam forensic ; then
1682   ewarn "Skipping running automount of device(s) labeled GRMLCFG as requested." ; eend 0
1683 else
1684  if [ -z "$INSTALLED" ] ; then
1685   einfo "Searching for device(s) labeled with GRMLCFG." ; eend 0
1686   eindent
1687   [ -d /mnt/grml ] || mkdir /mnt/grml
1688   umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1689 # We do need the following fix so floppy disk is available to blkid in any case :-/
1690   if [ -r /dev/fd0 ] ; then
1691      einfo "Floppy device detected. Trying to access floppy disk. (Disable this via boot option: noautoconfig)"
1692 #     dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1
1693      if timeout 4 dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1 ; then
1694         blkid /dev/fd0 1>>$DEBUG 2>&1
1695      fi
1696   fi
1697   DEVICE=$(blkid -t LABEL=GRMLCFG | head -1 | awk -F: '{print $1}')
1698   [ -n "$DEVICE" ] && mount -t auto -o ro $DEVICE /mnt/grml ; RC="$?"
1699   if [[ $RC == 0 ]]; then
1700     einfo "Mounting device $DEVICE labeled GRMLCFG succeeded." ; eend 0
1701
1702     CONFIG=''
1703     CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1704     if [ -n "$CONFIG" ]; then
1705       einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1706       cd /
1707       unp $CONFIG $EXTRACTOPTIONS ; eend $?
1708     else
1709       ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1710     fi
1711
1712     SCRIPT=''
1713     SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1714     if [ -n "$SCRIPT" ]; then
1715       einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1716       $SCRIPT ; eend $?
1717     fi
1718     grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1719   else
1720     ewarn "No devices with label GRMLCFG found." ; eend 0
1721   fi
1722   eoutdent
1723  fi
1724 fi
1725 }
1726
1727 config_myconfig(){
1728
1729 if checkbootparam "config" ; then
1730   CONFIG="$(getbootparam 'config' 2>>$DEBUG)"
1731   [ -z "$CONFIG" ] && CONFIG='config.tbz'
1732   einfo "Bootoption config found. config is set to: $CONFIG"
1733   eindent
1734     einfo "Trying to extract configuration file ${CONFIG}:"
1735     cd / && unp /cdrom/config/$CONFIG $EXTRACTOPTIONS ; eend $?
1736   eoutdent
1737 fi
1738
1739 if checkbootparam myconfig ; then
1740  MOUNTDEVICE="$(getbootparam 'myconfig' 2>>$DEBUG)"
1741  if [ -n "$MOUNTDEVICE" ]; then
1742    if checkbootparam file ; then
1743     FILENAME="$(getbootparam 'file' 2>>$DEBUG)"
1744     [ -n "$FILENAME" ] || FILENAME='config.tbz'
1745    fi
1746    [ -d /mnt/grml ] || mkdir /mnt/grml
1747    umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1748    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1749     if [[ $RC == 0 ]]; then
1750       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1751       eindent
1752       CONFIG=''
1753       CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1754       if [ -n "$CONFIG" ]; then
1755         einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1756         cd /
1757         unp $CONFIG $EXTRACTOPTIONS ; eend $?
1758       else
1759         ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1760       fi
1761
1762       SCRIPT=''
1763       SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1764       if [ -n "$SCRIPT" ]; then
1765         einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1766         $SCRIPT ; eend $?
1767       fi
1768       eoutdent
1769     else
1770       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1771     fi # mount $MOUNTDEVICE
1772    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1773  else
1774    einfo "Sorry, no device for bootoption myconfig provided. Skipping." ; eend 1
1775  fi # [ -n "$MOUNTDEVICE" ]
1776 fi # checkbootparam myconfig
1777
1778 if checkbootparam "partconf" ; then
1779  MOUNTDEVICE="$(getbootparam 'partconf' 2>>$DEBUG)"
1780  if [ -n "$MOUNTDEVICE" ]; then
1781    [ -d /mnt/grml ] || mkdir /mnt/grml
1782    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1783     if [[ $RC == 0 ]]; then
1784       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1785       einfo "Copying files from $MOUNTDEVICE over grml system."
1786       for file in `cat /etc/grml/partconf` ; do
1787         [ -d /mnt/grml/$file ] && cp -a /mnt/grml/${file}* ${file} && echo "copied: $file"
1788         [ -f /mnt/grml/$file ] && cp -a /mnt/grml/${file}  ${file} && echo "copied: $file"
1789       done && eend 0
1790     else
1791       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1792     fi # mount $MOUNTDEVICE
1793    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1794  else
1795    einfo "Sorry, no device for bootoption partconf provided. Skipping." ; eend 1
1796  fi # [ -n "$MOUNTDEVICE" ]
1797 fi
1798 }
1799 # }}}
1800
1801 # {{{ /cdrom/.*-options
1802 config_debs(){
1803 if checkbootparam "debs" ; then
1804   DEBS="$(getbootparam 'debs' 2>>$DEBUG)"
1805   einfo "Tring to install debian package(s) ${DEBS}"
1806   dpkg -i /cdrom/debs/$DEBS* ; eend $?
1807 fi
1808 }
1809
1810 config_scripts(){
1811 if checkbootparam "scripts" ; then
1812   SCRIPTS="$(getbootparam 'scripts' 2>>$DEBUG)"
1813   [ -z "$SCRIPTS" ] && SCRIPTS='grml.sh'
1814   einfo "Bootparameter scripts found. Trying to execute ${SCRIPTS}:"
1815   sh -c /cdrom/scripts/$SCRIPTS ; eend $?
1816 fi
1817 }
1818 # }}}
1819
1820 # {{{ distcc
1821 config_distcc(){
1822 if checkbootparam "distcc" ; then
1823  OPTIONS="$(getbootparam distcc 2>>$DEBUG)"
1824  if [ -n "$OPTIONS" ]; then
1825     NET=""
1826     INTERFACE=""
1827     if [ -n "$OPTIONS" ]; then
1828       NET="${OPTIONS%%,*}"
1829       R="${OPTIONS#*,}"
1830       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1831         OPTIONS="$R"
1832         INTERFACE="${OPTIONS%%,*}"
1833         R="${OPTIONS#*,}"
1834       fi
1835     fi
1836  fi
1837  CONFIG=/etc/default/distcc
1838  sed -i "s#^STARTDISTCC=.*#STARTDISTCC=YES#"  $CONFIG
1839  sed -i "s#^ALLOWEDNETS=.*#ALLOWEDNETS=$NET#" $CONFIG
1840
1841  if [ -n "$INTERFACE" ] ; then
1842    IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1843
1844    counter=10
1845    while [ -z "$IP" ] && [[ "$counter" != 0 ]] ; do
1846      counter=$(( counter-1 ))
1847      ewarn "No ip address for $INTERFACE found. Sleeping for 3 seconds. $counter tries left."
1848      sleep 3
1849      IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1850    done
1851  fi
1852
1853  if [ -n "$IP" ] ; then
1854    sed -i "s#^LISTENER=.*#LISTENER=$IP#"      $CONFIG
1855
1856    einfo "Bootoption distcc found. Preparing setup for distcc daemon."
1857    eindent
1858     id distccd >/dev/null 2>&1 || \
1859     (
1860       einfo "Creating distcc user" ; \
1861       adduser --quiet --system --ingroup nogroup --home / --no-create-home distccd ; eend $?
1862     )
1863
1864     einfo "Starting distcc for network ${NET}, listening on ${IP}."
1865    /etc/init.d/distcc start 1>/dev/null ; eend $?
1866    eoutdent
1867  else
1868    eerror "No ip address for $INTERFACE found. distcc can not be used without it." ; eend 1
1869  fi
1870 fi
1871
1872 if checkbootparam "gcc"; then
1873  GCC="$(getbootparam gcc 2>>$DEBUG)"
1874  eindent
1875  einfo "Pointing /usr/bin/gcc to /usr/bin/gcc-${GCC}."
1876  eoutdent
1877  rm -f /usr/bin/gcc
1878  ln -s /usr/bin/gcc-${GCC} /usr/bin/gcc ; eend $?
1879 fi
1880
1881 if checkbootparam "gpp"; then
1882  GPP="$(getbootparam gpp 2>>$DEBUG)"
1883  eindent
1884   einfo "Pointing /usr/bin/g++ to /usr/bin/g++-${GPP}."
1885   if [ -x /usr/bin/g++-${GPP} ] ; then
1886      rm -f /usr/bin/g++
1887      ln -s /usr/bin/g++-${GPP} /usr/bin/g++ ; eend $?
1888   fi
1889   einfo "Pointing /usr/bin/cpp to /usr/bin/cpp-${GPP}."
1890   if [ -x /usr/bin/cpp-${GPP} ] ; then
1891      rm -f /usr/bin/cpp
1892      ln -s /usr/bin/cpp-${GPP} /usr/bin/cpp ; eend $?
1893   fi
1894  eoutdent
1895 fi
1896
1897 }
1898 # }}}
1899
1900 # {{{ load modules
1901 # Notice: use it only on live-cd system, if running from harddisk please
1902 # add modules to /etc/modules and activate /etc/init.d/module-init-tools
1903 # in /etc/runlevel.conf
1904 config_modules(){
1905 MODULES_FILE=/etc/grml/modules
1906 if checkbootparam nomodules ; then
1907   ewarn "Skipping loading of modules defined in ${MODULES_FILE} as requested." ; eend 0
1908 elif [ -z "$INSTALLED" ]; then
1909  if [ -r $MODULES_FILE ] ; then
1910   einfo "Loading modules specified in ${MODULES_FILE}:"
1911   eindent
1912   grep '^[^#]' $MODULES_FILE | \
1913   while read module args; do
1914     [ "$module" ] || continue
1915       einfo "${module}"
1916       modprobe $module $args ; eend $?
1917   done
1918   eoutdent
1919  else
1920   ewarn "File $MODULES_FILE does not exist. Skipping loading of specific modules." ; eend 1
1921  fi
1922 fi
1923 }
1924 # }}}
1925
1926 # {{{ 915resolution
1927 config_915resolution(){
1928 if checkbootparam "915resolution" ; then
1929  OPTIONS="$(getbootparam 915resolution 2>>$DEBUG)"
1930   if [ -x /usr/sbin/915resolution ]; then
1931     CMD=915resolution
1932     MODE=""
1933     XRESO=""
1934     YRESO=""
1935     if [ -n "$OPTIONS" ]; then
1936       # Extra options
1937       MODE="${OPTIONS%%,*}"
1938       R="${OPTIONS#*,}"
1939       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1940         OPTIONS="$R"
1941         XRESO="${OPTIONS%%,*}"
1942         R="${OPTIONS#*,}"
1943         if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1944           OPTIONS="$R"
1945           YRESO="${OPTIONS%%,*}"
1946           R="${OPTIONS#*,}"
1947         fi
1948       fi
1949     fi
1950     einfo "Running 915resolution with options ${MODE} ${XRESO} ${YRESO}."
1951     [ -n "$MODE" ] && [ -n "$XRESO"  ] && [ -n "$YRESO" ]  && ( sh -c "$CMD $MODE $XRESO $YRESO" & )
1952     eend 0
1953   fi
1954 fi
1955 }
1956 # }}}
1957
1958 # {{{ SW-RAID
1959 config_swraid(){
1960   if [ -z "$INSTALLED" ] ; then
1961   # notice: checkbootparam "forensic" is just for users who don't know how to really use the bootoption
1962   if checkbootparam 'noraid'   -o checkbootparam 'noswraid' -o \
1963      checkbootparam 'forensic' -o checkbootparam 'raid=noautodetect' ; then
1964      ewarn "Skipping SW-RAID code as requested on boot commandline." ; eend 0
1965   else
1966     if ! [ -x /sbin/mdadm ] ; then
1967        eerror "mdadm not available, can not execute it." ; eend 1
1968     else
1969
1970        # if ! egrep -qv '^(MAILADDR.*|#.*|)$' /etc/mdadm/mdadm.conf 2>>$DEBUG ; then
1971        # find out whether we have a valid configuration file already
1972        if ! grep -q ARRAY /etc/mdadm/mdadm.conf 2>>$DEBUG ; then
1973           einfo "Creating /etc/mdadm/mdadm.conf for use with mdadm."
1974           [ -r /etc/mdadm/mdadm.conf ] && mv /etc/mdadm/mdadm.conf /etc/mdadm/mdadm.conf.old
1975           MDADM_MAILADDR__='root' /usr/share/mdadm/mkconf > /etc/mdadm/mdadm.conf ; eend $?
1976         else
1977           ewarn "/etc/mdadm/mdadm.conf looks like a configured mdadm setup, will not touch it." ; eend 0
1978        fi
1979
1980        if ! checkbootparam 'swraid' ; then
1981           eindent
1982           einfo "Just run 'Start mdadm-raid' to assemble md arrays or boot using 'swraid' as bootoption for autostart."
1983           eoutdent
1984        else
1985           einfo "Bootoption swraid found. Searching for software RAID arrays:"
1986           eindent
1987            IFSOLD=${IFS:-}
1988            IFS='
1989 '
1990            for line in $(mdadm --assemble --scan --auto=yes --symlink=no 2>&1) ; do
1991                case $line in
1992                  *'No arrays found'*)
1993                    ewarn "$line" ; eend 0
1994                    ;;
1995                  *)
1996                    einfo "$line" ; eend 0
1997                    ;;
1998                esac
1999            done
2000            IFS=$IFSOLD
2001          eoutdent
2002
2003          if [ -r /proc/mdstat ] ; then
2004             eindent
2005             MDSTAT=$(grep '^md[0-9]' /proc/mdstat)
2006             if [ -z "$MDSTAT" ] ; then
2007                ewarn "No active arrays found" ; eend 0
2008             else
2009                IFSOLD=${IFS:-}
2010                IFS='
2011 '
2012                for line in $(grep '^md[0-9]' /proc/mdstat) ; do
2013                    einfo "active arrays: $line" ; eend 0
2014                done
2015                IFS=$IFSOLD
2016             fi
2017             eoutdent
2018          fi # /proc/mdstat
2019        fi # bootoption swraid
2020
2021      fi # is /sbin/mdadm executable?
2022   fi # check for bootoptions
2023   fi # run only in live-cd mode
2024 }
2025 # }}}
2026
2027 # {{{ debnet: setup network based on an existing one found on a partition
2028 config_debnet(){
2029 if checkbootparam "debnet" ; then
2030  iszsh && setopt shwordsplit
2031  DEVICES="$(< /proc/partitions tail -n +3 | awk '{print "/dev/"$4}' | tr "\n" " ")"
2032  DEVICES="$DEVICES $(ls /dev/mapper/*)"
2033  FOUND_DEBNET=""
2034
2035  einfo "Bootoption 'debnet' found. Searching for Debian network configuration: "
2036  eindent
2037  if ! mount | grep '/mnt ' 1>/dev/null 2>&1 ; then
2038     for i in $DEVICES; do
2039      if mount -o ro -t auto "$i" /mnt >/dev/null 2>&1; then
2040          einfo "Scanning on $i"
2041        if [ -f /mnt/etc/network/interfaces ]; then
2042          einfo "/etc/network/interfaces found on ${i}" ; eend 0
2043          FOUND_DEBNET="$i"
2044          break
2045        fi
2046        umount /mnt
2047      fi
2048     done
2049
2050    if [ -n "$FOUND_DEBNET" ]; then
2051      einfo "Stopping network."
2052        pump -k 1>/dev/null 2>&1
2053        /etc/init.d/networking stop 1>/dev/null 2>&1 ; eend $?
2054      einfo "Copying Debian network configuration from $FOUND_DEBNET to running system."
2055        rm -rf /etc/network/run
2056        cp -a /mnt/etc/network /etc
2057        rm -rf /etc/network/run
2058        mkdir /etc/network/run
2059        umount /mnt ; eend $?
2060      einfo "Starting network."
2061        /etc/init.d/networking start ; eend $?
2062    else
2063      eerror "/etc/network/interfaces not found." ; eend 1
2064    fi
2065    eoutdent
2066  else
2067   eerror "Error: /mnt already mounted." ; eend 1
2068  fi
2069 fi
2070 }
2071 # }}}
2072
2073 # {{{ disable console blanking
2074 config_blanking(){
2075 if checkbootparam "noblank" ; then
2076   einfo "Bootoption noblank found. Disabling monitor blanking."
2077   setterm -blank 0 ; eend $?
2078 fi
2079 }
2080 # }}}
2081
2082 # {{{ grml2hd: automatic installation
2083 config_grml2hd(){
2084
2085 if checkbootparam "user" ; then
2086   NEWUSER=''
2087   NEWUSER="$(getbootparam 'user' 2>>$DEBUG)"
2088   sed -i "s/^NEWUSER=.*/NEWUSER=$NEWUSER/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2089 fi
2090
2091 if checkbootparam "filesystem" ; then
2092   FILESYSTEM=''
2093   FILESYSTEM="$(getbootparam 'filesystem' 2>>$DEBUG)"
2094   sed -i "s/^FILESYSTEM=.*/FILESYSTEM=$FILESYSTEM/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2095 fi
2096
2097 if checkbootparam "partition" ; then
2098   PARTITION=''
2099   PARTITION="$(getbootparam 'partition' 2>>$DEBUG)"
2100   # notice: the following checks whether the given partition is available, if not the skip
2101   # execution of grml2hd as it might result in data loss...
2102   if [ -r $PARTITION ] ; then
2103     sed -i "s#^PARTITION=.*#PARTITION=$PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2104   else
2105     ewarn "Partition $PARTITION does not exist. Skipping execution of grml2hd therefore." ; eend 1
2106   fi
2107 fi
2108
2109 if checkbootparam "mbr" ; then
2110   BOOT_PARTITION=''
2111   BOOT_PARTITION="$(getbootparam 'mbr' 2>>$DEBUG)"
2112   sed -i "s#^BOOT_PARTITION=.*#BOOT_PARTITION=$BOOT_PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2113 fi
2114
2115 if stringinstring "BOOT_IMAGE=grml2hd " "$CMDLINE" ; then
2116   cat>|/usr/bin/grml2hd_noninteractive<<EOF
2117 #!/bin/sh
2118 GRML2HD_NONINTERACTIVE='yes' grml2hd
2119 EOF
2120   chmod 755 /usr/bin/grml2hd_noninteractive
2121   einfo "Bootparameter grml2hd found. Running automatic installation via grml2hd using /etc/grml2hd/config." && eend 0
2122   if [ -z "$GRML2HD_FAIL" ] ; then
2123     screen /usr/bin/grml2hd_noninteractive ; einfo "Invoking a shell, just exit to continue booting..." ; /bin/zsh
2124   else
2125     ewarn "There was an error adjusting /etc/grml2hd/config. Skipping execution of grml2hd for security reasons." ; eend 1
2126   fi
2127 fi
2128 }
2129 # }}}
2130
2131 ### {{{ backwards compatible stuff
2132 config_environment(){
2133   ewarn "config_environment is deprecated. Please set CONFIG_ENVIRONMENT in /etc/grml/autoconfig to 'no'." ; eend 0
2134 }
2135 config_keyboard(){
2136   ewarn "config_keyboard is deprecated. Please set CONFIG_KEYBOARD in /etc/grml/autoconfig to 'no'." ; eend 0
2137 }
2138 # }}}
2139
2140 ## END OF FILE #################################################################
2141 # vim:foldmethod=marker