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