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