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