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