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