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