* config_swraid: add usage info how to disable it, check for
[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
941 NOSWAP=""
942 if checkbootparam "noswap" -o checkbootparam "forensic" ; then
943    NOSWAP="yes"
944 fi
945
946 if checkbootparam "nofstab" -o checkbootparam "forensic" ; then
947   ewarn "Skipping /etc/fstab creation as requested on boot commandline." ; eend 0
948 else
949   checkbootparam "anyswap" && export ANYSWAP='yes' || export ANYSWAP=""
950   einfo "Scanning for harddisk partitions and creating /etc/fstab. (Disable this via boot option: nofstab)"
951   iszsh && setopt nonomatch
952   if [ -x /usr/sbin/rebuildfstab ] ; then
953     config_userfstab || fstabuser=grml
954     /usr/sbin/rebuildfstab -r -u $fstabuser -g $fstabuser ; eend $?
955   else
956     ewarn "Command rebuildfstab not found. Install package grml-rebuildfstab." ; eend 1
957   fi
958   if [ -e /var/run/rebuildfstab.pid ]; then
959     # Another instance of rebuildfstab, probably from hotplug, is still running, so just wait.
960     sleep 8
961   fi
962 fi
963 # Scan for swap, config, homedir
964 if [ -z "$NOSWAP" -o -z "$INSTALLED" ]; then
965   einfo "Checking for swap partition(s)."
966 fi
967 GRML_IMG=""
968 GRML_SWP=""
969 HOMEDIR="$(getbootparam home)"
970 if [ -n "$partitions" ]; then
971  while read p m f relax; do
972   case "$p" in *fd0*|*proc*|*sys*|*\#*) continue;; esac
973   partoptions="users,exec"
974   fnew=""
975   case "$f" in swap)
976    eindent
977    if [ -n "$NOSWAP" ]; then
978     ewarn "Ignoring swap partition ${WHITE}$p${NORMAL} as requested." ; eend 0
979    else
980      case "$(dd if=$p bs=1 count=6 skip=4086 2>/dev/null)" in
981              S1SUSP|S2SUSP|pmdisk|[zZ]*)
982                 if [ -n "$ANYSWAP" ] ; then
983                   einfo "Using swap partition ${WHITE}${p}${NORMAL} [bootoption anyswap found]."
984                   swapon $p 2>>$DEBUG ; eend $?
985                 else
986                   ewarn "Suspend signature on ${WHITE}${p}${NORMAL} found, not using as swap. (Force usage via boot option: anyswap)"
987                 fi
988                ;;
989              *)
990                 if [[ "$p" == LABEL* ]] ; then
991                    p=$(blkid -t $p | awk -F: '{print $1}')
992                 fi
993                 if grep -q $p /proc/swaps ; then
994                    ewarn "Not using swap partition ${WHITE}${p}${NORMAL} as it is already in use." ; eend 0
995                 else
996                    einfo "Using swap partition ${WHITE}${p}${NORMAL}."
997                    swapon $p 2>>$DEBUG ; eend $?
998                 fi
999                ;;
1000      esac
1001    fi
1002    eoutdent
1003    continue
1004    ;;
1005   esac
1006 # Create mountdir if not already present, but don't try to create stuff like /proc/bus/usb
1007 # Notice: grml-rebuildfstab >= 0.3-1 handles this now
1008 #  case "$m" in *none*|*proc*|*sys*|'') continue ;; esac
1009 #  [ -d "$m" ] || mkdir -p "$m"
1010 # WARNING: NTFS RW mounts are only safe since Kernel 2.6.11
1011   [ "$f" = "ntfs" -a "${KERNEL%.*}" != "2.6" ] && continue
1012   MOUNTOPTS="ro"
1013   case "$f" in
1014     vfat|msdos|ntfs) MOUNTOPTS="$MOUNTOPTS,uid=${fstabuser},gid=${fstabuser}" ;;
1015     ext2|ext3|reiserfs|jfs|reiser4|xfs) MOUNTOPTS="$MOUNTOPTS,noatime" ;;
1016     *) continue ;;
1017     # *) NONEFOUND='1'; continue ;;
1018   esac
1019   mount -o "$MOUNTOPTS" -t $f $p $m 2>>$DEBUG || continue
1020   # Activate swapfile, if exists
1021   SWAPFILE="$(/bin/ls -1d $m/[Gg][Rr][Mm][Ll].[Ss][Ww][Pp] 2>/dev/null)"
1022   if [ -z "$NOSWAP" -a -n "$SWAPFILE" -a -f "$SWAPFILE" ]; then
1023    mount -o remount,rw $m
1024    if swapon "$SWAPFILE" 2>>$DEBUG ; then
1025     einfo "Using GRML swapfile ${SWAPFILE}."
1026     fnew="$SWAPFILE swap swap defaults 0 0"
1027     stringinfile "$fnew" "/etc/fstab" || echo "$fnew" >> /etc/fstab
1028     GRML_SWP="$GRML_SWP $SWAPFILE"
1029     eend 0
1030    fi
1031    mount -o remount,ro $m 2>>$DEBUG
1032   fi
1033   IMAGE="$(/bin/ls -1d $m/[Gg][Rr][Mm][Ll].[Ii][Mm][Gg] 2>/dev/null)"
1034   if [ -z "$INSTALLED" -a -z "$GRML_IMG" -a -n "$IMAGE" -a -f "$IMAGE" ]; then
1035    if [ -n "$HOMEDIR" ]; then
1036     if [ "$HOMEDIR" != "scan" -a "$HOMEDIR" != "$IMAGE" -a "$HOMEDIR" != "${IMAGE%/*.*}" ]; then
1037      continue
1038     fi
1039    fi
1040    if type -a grml-image >/dev/null 2>&1 && grml-image "$IMAGE" </dev/console >/dev/console 2>&1; then
1041     GRML_IMG="$IMAGE"
1042     mount -o remount,ro $m 2>>$DEBUG
1043    fi
1044   fi
1045   eend 0
1046   # Umount, if not in use
1047   umount -r $m 2>/dev/null
1048  done <<EOT
1049 $(cat /etc/fstab)
1050 EOT
1051 fi
1052 }
1053 # }}}
1054
1055 # {{{ Mouse
1056 config_mouse(){
1057 if [ -n "$MOUSE_DEVICE" ] ; then
1058   einfo "Detecting mouse: ${MOUSE_FULLNAME} at ${MOUSE_DEVICE}" ; eend $?
1059 fi
1060 }
1061 # }}}
1062
1063 # {{{ IPv6 configuration
1064 # Load IPv6 kernel module and print IP adresses
1065 config_ipv6(){
1066 if checkbootparam "ipv6"; then
1067   einfo "Enabling IPv6 as requested on boot commandline (sleeping for 2 seconds)"
1068   modprobe ipv6
1069   # we probably need some time until stateless autoconfiguration has happened
1070   sleep 2
1071   NETDEVICES="$(awk -F: '/eth.:|tr.:|wlan.:/{print $1}' /proc/net/dev 2>>$DEBUG)"
1072   for DEVICE in `echo "$NETDEVICES"`
1073   do
1074     eindent
1075     einfo "$DEVICE:"
1076     ADDRESSES="$(ifconfig $DEVICE | awk '/.*inet6 addr:.*/{print $3}')"
1077     COUNT="$(ifconfig $DEVICE | awk '/.*inet6 addr:.*/{ sum += 1};END {print sum }')"
1078     eindent
1079     for ADDR in `echo "$ADDRESSES"`
1080     do
1081       einfo "$ADDR"
1082     done
1083     if [ "$COUNT" -eq "0" ]
1084     then
1085       einfo "(none)" ; eend 1
1086     fi
1087     eoutdent
1088     eoutdent
1089   done
1090   eend 0
1091 fi
1092 }
1093 # }}}
1094
1095 # {{{ Fat-Client-Version: DHCP Broadcast for IP address
1096 config_dhcp(){
1097 if checkbootparam "nodhcp"; then
1098   ewarn "Skipping DHCP broadcast/network detection as requested on boot commandline." ; eend 0
1099 else
1100   NETDEVICES="$(awk -F: '/eth.:|tr.:|wlan.:/{print $1}' /proc/net/dev 2>>$DEBUG)"
1101   rm -rf /etc/network/status ; mkdir -p /etc/network/status
1102   for DEVICE in `echo "$NETDEVICES"` ; do
1103     einfo "Network device ${WHITE}${DEVICE}${NORMAL} detected, DHCP broadcasting for IP. (Backgrounding)"
1104     trap 2 3 11
1105     ifconfig $DEVICE up >>$DEBUG 2>&1
1106     ( pump -i $DEVICE >>$DEBUG 2>&1 && echo finished_running_pump > /etc/network/status/$DEVICE ) &
1107     trap "" 2 3 11
1108     sleep 1
1109     eend 0
1110   done
1111 fi
1112 }
1113 # }}}
1114
1115 # {{{ helper functions
1116 findfile(){
1117 FOUND=""
1118 # search all partitions for a file in the root directory
1119 for i in /mnt/[sh]d[a-z] /mnt/[sh]d[a-z][1-9] /mnt/[sh]d[a-z][1-9]?*; do
1120 # See if it's already mounted
1121   [ -f "$i/$1" ] &&  { echo "$i/$1"; return 0; }
1122   if [ -d "$i" ] && mount -r "$i" 2>>$DEBUG; then
1123     [ -f "$i/$1" ] && FOUND="$i/$1"
1124     umount -l "$i" 2>>$DEBUG
1125     [ -n "$FOUND" ] && { echo "$FOUND"; return 0; }
1126   fi
1127 done
1128 return 2
1129 }
1130
1131 fstype(){
1132 case "$(file -s $1)" in
1133   *[Ff][Aa][Tt]*|*[Xx]86*) echo "vfat"; return 0;;
1134   *[Rr][Ee][Ii][Ss][Ee][Rr]*)  echo "reiserfs"; return 0;;
1135   *[Xx][Ff][Ss]*)  echo "xfs"; return 0;;
1136   *[Ee][Xx][Tt]3*) echo "ext3"; return 0;;
1137   *[Ee][Xx][Tt]2*) echo "ext2"; return 0;;
1138   *data*)          echo "invalid"; return 0;;
1139   *) echo "auto"; return 0;;
1140 esac
1141 }
1142
1143 # Try to mount this filesystem read-only, without or with encryption
1144 trymount(){
1145 # Check if already mounted
1146 case "$(cat /proc/mounts)" in *\ $2\ *) return 0;; esac
1147 # Apparently, mount-aes DOES autodetect AES loopback files.
1148 [ -b "$1" ] && { mount -t auto -o ro "$1" "$2" 2>>$DEBUG; RC="$?"; }
1149 # We need to mount crypto-loop files with initial rw support
1150 [ -f "$1" ] && { mount -t auto -o loop,rw "$1" "$2" 2>>$DEBUG; RC="$?"; }
1151 # Mount succeeded?
1152 [ "$RC" = "0" ] && return 0
1153 echo ""
1154 einfo "Filesystem not autodetected, trying to mount $1 with AES256 encryption."
1155 a="y"
1156 while [ "$a" != "n" -a "$a" != "N" ]; do
1157 # We need to mount crypto-loop files with initial rw support
1158  mount -t auto -o loop,rw,encryption=AES256 "$1" "$2" && return 0
1159  echo -n "${RED}Mount failed, retry? [Y/n] ${NORMAL}"
1160  # Problem with ioctl() from getpasswd()?
1161  # read a
1162  read a
1163 done
1164 return 1
1165 }
1166 # }}}
1167
1168 # {{{ CPU-detection
1169 config_cpu(){
1170 if checkbootparam "nocpu"; then
1171   ewarn "Skipping CPU detection as requested on boot commandline." ; eend 0
1172 else
1173   if ! [ -x /etc/init.d/powernowd ] ; then
1174     ewarn "Skipping CPU detection as powernowd dependencies are not fulfilled." ; eend 1
1175   elif [ ! -e /lib/modules/${KERNEL}/kernel/arch/i386/kernel/cpu/cpufreq -o ! -e /lib/modules/${KERNEL}/kernel/drivers/cpufreq ] ; then
1176     ewarn "Skipping CPU detection as module dependencies are not fulfilled." ; eend 1
1177   else
1178     if [[ `grep -c processor /proc/cpuinfo` -gt 1 ]] ; then
1179       einfo "Detecting CPU:"
1180       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)
1181       echo $CPU | sed 's/ \{1,\}/ /g'
1182       eend 0
1183     else
1184       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
1185     fi
1186     if /usr/sbin/laptop-detect ; then
1187     einfo "Detected Laptop - trying to use cpu frequency scaling:"
1188 #      loadcpumod() {
1189 #      for module in /lib/modules/${KERNEL}/kernel/arch/i386/kernel/cpu/cpufreq/*.ko /lib/modules/${KERNEL}/kernel/drivers/cpufreq/*.ko ; do
1190 #    # modprobe ${${${${(f)"$(_call_program modules ${(M)words[1]##*/}modprobe -l | grep cpufreq 2>>$DEBUG)"}:#}##*/}%.*}
1191 #        modprobe `basename ${module%%\.ko}` 1>>$DEBUG 2>&1
1192 #      done
1193 #      }
1194 #    CPU=$(grep 'model name' /proc/cpuinfo | cut -b14- | head -1)
1195 #    eindent
1196 #    if [[ $CPU = *Intel* ]] ; then
1197 #      einfo "Detected CPU is of type Intel - loading modules and starting cpudyn."
1198 #      local DETECTED=1
1199 #      loadcpumod
1200 #      /etc/init.d/cpudyn start 1>>$DEBUG ; eend $?
1201 #    fi
1202 #    if [[ $CPU = *AMD* ]] ; then
1203 #      einfo "Detected CPU is of type AMD - loading modules and starting powernowd."
1204 #      local DETECTED=1
1205 #      loadcpumod
1206 #      /etc/init.d/powernowd start 1>>$DEBUG ; eend $?
1207 #    fi
1208
1209      eindent
1210      if [ -r /usr/bin/cpufreq-detect.sh ] ; then
1211        . /usr/bin/cpufreq-detect.sh
1212        if [ -n "$MODULE" -a "$MODULE" != none ]; then
1213          einfo "Loading module ${MODULE} and starting powernowd."
1214          modprobe cpufreq_userspace 1>>$DEBUG
1215          modprobe "$MODULE" 1>>$DEBUG || modprobe "$MODULE_FALLBACK" 1>>$DEBUG
1216          /etc/init.d/powernowd start 1>>$DEBUG ; eend $?
1217        else
1218          ewarn "Could not detect an appropriate CPU for use with powernowd - skipping." && eend 1
1219        fi
1220      fi
1221      eoutdent
1222    fi
1223   fi
1224 fi
1225 }
1226 # }}}
1227
1228 # {{{ autostart of ssh
1229 config_ssh(){
1230 if checkbootparam ssh ; then
1231   SSH_PASSWD="$(getbootparam 'ssh' 2>>$DEBUG)"
1232   einfo "Bootoption passwd found."
1233   if [ -n "$SSH_PASSWD" ] ; then
1234     echo "grml:$SSH_PASSWD" | chpasswd -m
1235     einfo "Starting secure shell server in background."
1236     /etc/init.d/rmnologin start 1>>$DEBUG 2>>$DEBUG
1237     /etc/init.d/ssh start 1>>$DEBUG 2>>$DEBUG &
1238     eend 0
1239   else
1240     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1241   fi
1242   eindent
1243     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1244   eoutdent
1245 fi
1246 }
1247 # }}}
1248
1249 # {{{ set password for user grml
1250 config_passwd(){
1251 if checkbootparam passwd >>$DEBUG 2>&1; then
1252   einfo "Bootoption passwd found."
1253   PASSWD="$(getbootparam 'passwd' 2>>$DEBUG)"
1254   if [ -n "$PASSWD" ] ; then
1255     echo "grml:$PASSWD" | chpasswd -m ; eend $?
1256   else
1257     eerror "No given password for ssh found. Autostart of SSH will not work." ; eend 1
1258   fi
1259   eindent
1260     ewarn "Warning: please change the password for user grml set via bootparameter as soon as possible!"
1261   eoutdent
1262 fi
1263 }
1264 # }}}
1265
1266 # {{{ Check for persistent homedir option and eventually mount /home from there, or use a loopback file.
1267 config_homedir(){
1268 HOMEDIR="$(getbootparam home)"
1269 MYHOMEDEVICE=""
1270 MYHOMEMOUNTPOINT=""
1271 MYHOMEDIR=""
1272 if [ -n "$HOMEDIR" ]; then
1273   einfo "Bootoption home detected." && eend 0
1274   case "$HOMEDIR" in
1275     /dev/*)
1276     MYHOMEDEVICE="${HOMEDIR##/dev/}"
1277     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1278     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1279     MYHOMEDIR="/mnt/${HOMEDIR##/dev/}"
1280   ;;
1281     /mnt/*)
1282     MYHOMEDEVICE="${HOMEDIR##/mnt/}"
1283     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1284     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1285     MYHOMEDIR="$HOMEDIR"
1286   ;;
1287     [Aa][Uu][Tt][Oo]|[Ss][Cc][Aa][Nn]|[Ff][Ii][Nn][Dd])
1288     MYHOMEDIR="$(findfile grml.img)"
1289     MYHOMEDEVICE="${MYHOMEDIR##/mnt/}"
1290     MYHOMEDEVICE="/dev/${MYHOMEDEVICE%%/*}"
1291     MYHOMEMOUNTPOINT="/mnt/${MYHOMEDEVICE##/dev/}"
1292   ;;
1293   *)
1294     eerror "Invalid home= option '$HOMEDIR' specified (must start with /dev/ or /mnt/ or 'scan')." ; eend 1
1295     eerror "Option ignored." ; eend 1
1296   ;;
1297   esac
1298 fi
1299
1300 if [ -n "$MYHOMEDIR" ]; then
1301   if trymount "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"; then
1302     [ -f "$MYHOMEMOUNTPOINT/grml.img" ] && MYHOMEDIR="$MYHOMEMOUNTPOINT/grml.img"
1303     while read device mountpoint fs relax; do
1304       case "$mountpoint" in *$MYHOMEMOUNTPOINT*)
1305         case "$fs" in *[Nn][Tt][Ff][Ss]*)
1306           umount "$MYHOMEMOUNTPOINT"; eerror "Error: will not mount NTFS filesystem on $MYHOMEDEVICE read/write!" ; eend 1
1307           break
1308         ;;
1309         *[Ff][Aa][Tt]*)
1310         # Note: This currently won't work with encrypted partitions
1311         umount "$MYHOMEMOUNTPOINT"; mount -t vfat -o rw,uid=grml,gid=grml,umask=002 "$MYHOMEDEVICE" "$MYHOMEMOUNTPOINT"
1312         if [ ! -f "$MYHOMEDIR" ]; then
1313           ewarn "WARNING: FAT32 is not a good filesystem option for /home/grml (missing socket/symlink support)."
1314           ewarn "WARNING: Better use an ext2 loopback file on this device, and boot with home=$MYHOMEDEVICE/grml.img."
1315         fi
1316         ;;
1317       esac
1318       if mount -o remount,rw "$MYHOMEMOUNTPOINT"; then
1319         einfo "Mounting ${WHITE}$MYHOMEDIR${NORMAL} as ${WHITE}/home/grml${NORMAL}."
1320         if [ -f "$MYHOMEDIR" ]; then
1321           # It's a loopback file, mount it over the /home/grml directory
1322           trymount "$MYHOMEDIR" /home/grml
1323           RC="$?"
1324           [ "$RC" = "0" ] && ERROR="$(mount -o remount,rw /home/grml 2>&1)"
1325           RC="$?"
1326         else
1327           # Do a --bind mount
1328           ERROR="$(mount --bind "$MYHOMEDIR" /home/grml 2>&1)"
1329           RC="$?"
1330         fi
1331         [ "$RC" = "0" ] && eend 0 || ( eerror "${ERROR}" ; eend 1 )
1332       fi
1333       break
1334       ;;
1335     esac
1336   done <<EOT
1337 $(cat /proc/mounts)
1338 EOT
1339   fi
1340 fi
1341 }
1342 # }}}
1343
1344 # {{{ Check if we want the config floppy
1345 config_old_myconfig(){
1346 MYCONF=""
1347 case "$CMDLINE" in *\ myconfig*) MYCONF="yes"; ;; esac
1348 if [ -n "$MYCONF" ]; then
1349   einfo "Bootoption myconfig detected." && eend 0
1350 # Check for given config directory
1351   MYCONFDIR="$(getbootparam 'myconfig')"
1352   [ -n "$MYCONFDIR" ] || MYCONFDIR="$(getbootparam 'myconfig')"
1353 fi
1354
1355 # Check for configuration floppy add-on if not running from HD
1356 if [ -z "$INSTALLED" -a -n "$MYCONF" ]; then
1357   FOUND_CONFIG=""
1358   if [ -n "$MYCONFDIR" ]; then
1359     case "$MYCONFDIR" in
1360      /dev/*)
1361        MYCONFDEVICE="${MYCONFDIR##/dev/}"
1362        MYCONFDEVICE="/dev/${MYCONFDEVICE%%/*}"
1363        MYCONFMOUNTPOINT="/mnt/${MYCONFDEVICE##/dev/}"
1364        MYCONFDIR="/mnt/${MYCONFDIR##/dev/}"
1365       ;;
1366      /mnt/*)
1367        MYCONFDEVICE="${MYCONFDIR##/mnt/}"
1368        MYCONFDEVICE="/dev/${MYCONFDEVICE%%/*}"
1369        MYCONFMOUNTPOINT="/mnt/${MYCONFDEVICE##/dev/}"
1370       ;;
1371      [Aa][Uu][Tt][Oo]|[Ss][Cc][Aa][Nn]|[Ff][Ii][Nn][Dd])
1372        MYCONFDIR="$(findfile grml.sh)"
1373        if [ -n "$MYCONFDIR" ]; then
1374          MYCONFDEVICE="${MYCONFDIR##/mnt/}"
1375          MYCONFDEVICE="/dev/${MYCONFDEVICE%%/*}"
1376          MYCONFMOUNTPOINT="/mnt/${MYCONFDEVICE##/dev/}"
1377          MYCONFDIR="${MYCONFMOUNTPOINT}"
1378        else
1379          FOUND_CONFIG="none"
1380        fi
1381       ;;
1382      *)
1383        eerror "Invalid configdir '$MYCONFDIR' specified (must start with /dev/ or /mnt/ or 'scan')." ; eend 1
1384        eerror "Option ignored."
1385        FOUND_CONFIG="invalid"
1386       ;;
1387     esac
1388   else
1389     MYCONFDEVICE="/dev/fd0"
1390     MYCONFMOUNTPOINT="/mnt/floppy"
1391     MYCONFDIR="/mnt/floppy"
1392   fi
1393
1394   eindent
1395   if [ -z "$FOUND_CONFIG" ]; then
1396     einfo "Checking ${WHITE}${MYCONFDIR}${NORMAL} for grml configuration files...${NORMAL}"
1397     [ -d $MYCONFMOUNTPOINT ] || mkdir $MYCONFMOUNTPOINT && chown grml: $MYCONFMOUNTPOINT
1398     if trymount "$MYCONFDEVICE" "$MYCONFMOUNTPOINT"; then
1399       MYCONFIG="$(/bin/ls -1d $MYCONFDIR/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1400       if [ -n "$MYCONFIG" -a -f "$MYCONFIG" ]; then
1401         echo ""
1402         FOUND_CONFIG="yes"
1403         einfo "Found, now executing ${WHITE}${MYCONFIG}${NORMAL}."
1404         echo "6" > /proc/sys/kernel/printk
1405         . "$MYCONFIG" "$MYCONFDIR" || true
1406         echo "0" > /proc/sys/kernel/printk
1407       fi
1408       umount "$MYCONFMOUNTPOINT" 2>>$DEBUG
1409     fi
1410   fi
1411   [ -n "$FOUND_CONFIG" ] || eerror "Not present."
1412   eoutdent
1413 fi
1414 # }}}
1415
1416 # {{{ Check for extra shellscript on CD-ROM (/cdrom/GRML/grml.sh)
1417 MYCONFIG="$(/bin/ls -1d /cdrom/GRML/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1418 if [ -n "$MYCONFIG" -a -f "$MYCONFIG" ]; then
1419   echo ""
1420   FOUND_CONFIG="yes"
1421   einfo "grml script/configuration file found on CD, executing ${BLUE}${MYCONFIG}${NORMAL}:"
1422   echo "6" > /proc/sys/kernel/printk
1423   . "$MYCONFIG" /cdrom/GRML || true
1424   echo "0" > /proc/sys/kernel/printk
1425 fi
1426 }
1427 # }}}
1428
1429 # {{{ Check for scripts on CD-ROM
1430 config_cdrom_scripts(){
1431 if checkbootparam "script"; then
1432   for script in /cdrom/scripts/* ; do
1433     einfo " grml script found on CD, executing ${WHITE}${script}${NORMAL}."
1434     . $script
1435   done
1436 fi
1437 }
1438 # }}}
1439
1440 # {{{ Sound
1441 config_mixer(){
1442 if ! [ -x /usr/bin/aumix ] ; then
1443   eerror "aumix binary not available. Can not set sound volumes therefore." ; eend 1
1444 else
1445
1446   if checkbootparam vol ; then
1447     VOL="$(getbootparam 'vol' 2>>$DEBUG)"
1448     if [ -z "$VOL" ] ; then
1449       eerror "Bootoption vol found but no volume level/parameter given. Using defaults." ; eend 1
1450       VOL='75' # default
1451     fi
1452   else
1453     VOL='75' # default
1454   fi
1455
1456   if checkbootparam nosound ; then
1457     einfo "Muting sound devices on request."
1458     # some IBM notebooks require the following stuff:
1459     if [ -x /usr/bin/amixer ] ; then
1460        if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1461           amixer set Front unmute 1>/dev/null
1462           amixer set Front 0% 1>/dev/null
1463        fi
1464     fi
1465     ERROR=$(aumix -w 0 -v 0 -p 0 -m 0 2>&1) ; RC=$?
1466     if [ -n "$ERROR" ] ; then
1467        eindent
1468        eerror "Problem muting sound devices: $ERROR"
1469        eoutdent
1470     fi
1471     eend $RC
1472   elif [ -z "$INSTALLED" ]; then
1473       einfo "Setting mixer volumes to level ${WHITE}${VOL}${NORMAL}."
1474       # some IBM notebooks require the following stuff:
1475       if [ -x /usr/bin/amixer ] ; then
1476          if amixer get Front 1>/dev/null 2>>$DEBUG ; then
1477             amixer set Front unmute 1>/dev/null
1478             amixer set Front ${VOL}% 1>/dev/null
1479          fi
1480       fi
1481       ERROR=$(aumix -w $VOL -v $VOL -p $VOL -m $VOL 2>&1) ; RC=$?
1482       if [ -n "$ERROR" ] ; then
1483          eindent
1484          eerror "Problem setting mixer volumes: $ERROR"
1485          eoutdent
1486       fi
1487       eend $RC
1488   fi
1489
1490 fi
1491 }
1492 # }}}
1493
1494 # {{{ modem detection
1495 config_modem(){
1496 if checkbootparam "nomodem"; then
1497   ewarn "Skipping check for AC97 modem controller as requested on boot commandline." ; eend 0
1498 else
1499   if [ -x /etc/init.d/sl-modem-daemon ] ; then
1500    if lspci | grep Intel | grep -q "AC'97 Modem Controller" ; then
1501      einfo "AC97 modem controller detected. Starting sl-modem-daemon in background."
1502      /etc/init.d/sl-modem-daemon start >>$DEBUG &
1503      eend 0
1504    fi
1505   fi
1506 fi
1507 }
1508 # }}}
1509
1510 # {{{ keyboard add-ons
1511 config_setkeycodes(){
1512 if checkbootparam "setkeycodes" ; then
1513  einfo "Setting keycodes as requested via bootparameter 'setkeycodes'."
1514   # MS MM keyboard add-on
1515   # fix
1516   setkeycodes e001 126 &>/dev/null
1517   setkeycodes e059 127 &>/dev/null
1518   # fn keys
1519   setkeycodes e03b 59 &>/dev/null
1520   setkeycodes e008 60 &>/dev/null
1521   setkeycodes e007 61 &>/dev/null
1522   setkeycodes e03e 62 &>/dev/null
1523   setkeycodes e03f 63 &>/dev/null
1524   setkeycodes e040 64 &>/dev/null
1525   setkeycodes e041 65 &>/dev/null
1526   setkeycodes e042 66 &>/dev/null
1527   setkeycodes e043 67 &>/dev/null
1528   setkeycodes e023 68 &>/dev/null
1529   setkeycodes e057 87 &>/dev/null
1530   setkeycodes e058 88 &>/dev/null
1531   # hp keycodes
1532   setkeycodes e00a 89 e008 90 &>/dev/null
1533  eend 0
1534 fi
1535 }
1536 # }}}
1537
1538 # {{{ wondershaper
1539 config_wondershaper(){
1540  if checkbootparam "wondershaper" ; then
1541     WONDER="$(getbootparam wondershaper 2>>$DEBUG)"
1542     CMD=wondershaper
1543     DEVICE=""
1544     DOWNSTREAM=""
1545     UPSTREAM=""
1546     if [ -n "$WONDER" ]; then
1547       # Extra options
1548       DEVICE="${WONDER%%,*}"
1549       R="${WONDER#*,}"
1550       if [ -n "$R" -a "$R" != "$WONDER" ]; then
1551         WONDER="$R"
1552         DOWNSTREAM="${WONDER%%,*}"
1553         R="${WONDER#*,}"
1554         if [ -n "$R" -a "$R" != "$WONDER" ]; then
1555           WONDER="$R"
1556           UPSTREAM="${WONDER%%,*}"
1557           R="${WONDER#*,}"
1558         fi
1559       fi
1560     fi
1561     [ -n "$DEVICE" ]     && CMD="$CMD $DEVICE"
1562     [ -n "$DOWNSTREAM" ] && CMD="$CMD $DOWNSTREAM"
1563     [ -n "$UPSTREAM" ]   && CMD="$CMD $UPSTREAM"
1564     einfo "Starting wondershaper (${CMD}) in background."
1565     ( sh -c $CMD & ) && eend 0
1566  fi
1567 }
1568 # }}}
1569
1570 # {{{ syslog-ng
1571 config_syslog(){
1572  if checkbootparam "nosyslog"; then
1573   ewarn "Not starting syslog-ng as requested on boot commandline." ; eend 0
1574  else
1575   einfo "Starting syslog-ng in background."
1576   /etc/init.d/syslog-ng start 1>>$DEBUG &
1577   eend 0
1578  fi
1579 }
1580 # }}}
1581
1582 # {{{ gpm
1583 config_gpm(){
1584  if checkbootparam "nogpm"; then
1585   ewarn "Not starting GPM as requested on boot commandline." ; eend 0
1586  else
1587   einfo "Starting gpm in background."
1588 #  /etc/init.d/gpm start 1>>$DEBUG &
1589   ( while [ ! -e /dev/psaux ]; do sleep 5; done; /etc/init.d/gpm start 1>>$DEBUG ) &
1590   eend 0
1591  fi
1592 }
1593 # }}}
1594
1595 # {{{ services
1596 config_services(){
1597  if checkbootparam "services" ; then
1598     SERVICE="$(getbootparam services 2>>$DEBUG)"
1599     SERVICELIST=$(echo "$SERVICE" | sed 's/,/\\n/g')
1600     SERVICENL=$(echo "$SERVICE" | sed 's/,/ /g')
1601     einfo "Starting service(s) ${SERVICENL} in background."
1602     for service in $(echo -e $SERVICELIST) ; do
1603        /etc/init.d/${service} start 1>>$DEBUG &
1604     done
1605     [ "$?" == "0" ] ; eend $?
1606  fi
1607 }
1608 # }}}
1609
1610 # {{{ config files
1611 config_netconfig(){
1612  if checkbootparam netconfig ; then
1613   CONFIG="$(getbootparam 'netconfig' 2>>$DEBUG)"
1614   CONFIGFILE='/tmp/netconfig.grml'
1615
1616   getconfig() {
1617   wget --timeout=10 --dns-timeout=10  --connect-timeout=10 \
1618        --read-timeout=10 $CONFIG -O $CONFIGFILE && return 0 || return 1
1619   }
1620   einfo "Trying to get ${WHITE}${CONFIG}${NORMAL}"
1621   counter=10
1622   while ! getconfig && [[ "$counter" != 0 ]] ; do
1623     echo -n "Sleeping for 5 seconds and trying to get config again... "
1624     counter=$(( counter-1 ))
1625     echo "$counter tries left" ; sleep 1
1626   done
1627   if [ -r "$CONFIGFILE" ] ; then
1628     einfo "Downloading was successfull." ; eend 0
1629     einfo "md5sum of ${WHITE}${CONFIG}${NORMAL}: "
1630     md5sum $CONFIGFILE ; eend 0
1631     cd / && einfo "Unpacking ${WHITE}${CONFIGFILE}${NORMAL}:" && /usr/bin/unp $CONFIGFILE $EXTRACTOPTIONS ; eend $?
1632   else
1633     einfo "Sorry, could not fetch $CONFIG" ; eend 1
1634   fi
1635  fi
1636 }
1637 # }}}
1638
1639 # {{{ blindsound
1640 config_blindsound(){
1641  if checkbootparam "blind" ; then
1642     beep
1643     flite -o play -t "welcome to the gremel system"
1644  fi
1645 }
1646 # }}}
1647
1648 # {{{ welcome sound
1649 config_welcome(){
1650  if checkbootparam welcome ; then
1651   flite -o play -t "welcome to the gremel system"
1652  fi
1653 }
1654 # }}}
1655
1656 # {{{ fix/workaround for unionfs
1657 fix_unionfs(){
1658   if [ -z "$INSTALLED" ]; then
1659    touch /var/cache/apt/*cache.bin
1660   fi
1661 }
1662 # }}}
1663
1664 # {{{ create all /mnt-directories
1665 create_mnt_dirs(){
1666   ewarn "create_mnt_dirs is deprecated as grml-rebuildfstab does all we need."
1667   ewarn "Please set CONFIG_CREATE_MNT_DIRS='no' in /etc/grml/autoconfig" ; eend 0
1668 }
1669 # }}}
1670
1671 # {{{ start X window system via grml-x
1672 config_x_startup(){
1673 if checkbootparam startx ; then
1674  if [ -x /usr/X11R6/bin/X ] ; then
1675   if [ -z "$INSTALLED" ] ; then
1676    WINDOWMANAGER="$(getbootparam 'startx' 2>>$DEBUG)"
1677    if [ -z "$WINDOWMANAGER" ] ; then
1678      einfo "No window manager specified. Taking ${WHITE}wm-ng${NORMAL} as default." && eend 0
1679      WINDOWMANAGER="wm-ng"
1680    else
1681      einfo "Window manager ${WHITE}${WINDOWMANAGER}${NORMAL} found as bootoption." && eend 0
1682    fi
1683    einfo "Changing to runlevel 5 for starting grml-x ${WINDOWMANAGER}. Just exit X windows system to get full featured consoles."
1684    config_userfstab || fstabuser='grml'
1685  cat>|/etc/init.d/xstartup<<EOF
1686 #!/bin/sh
1687 # su - $fstabuser -c 'grml-x "$WINDOWMANAGER"'
1688 sudo -u $fstabuser -i /usr/bin/grml-x $WINDOWMANAGER 1>>$DEBUG
1689 EOF
1690    chmod 755 /etc/init.d/xstartup
1691    sed -i 's/^allowed_users=.*/allowed_users=anybody/' /etc/X11/Xwrapper.config
1692    sed -i 's#^6.*#6:2345:respawn:/bin/zsh --login -c "/etc/init.d/xstartup ; /bin/zsh"#'   /etc/inittab
1693    /sbin/telinit q ; eend $?
1694   else
1695     eerror "We are not running from CD - startx will not work, skipping it.
1696      Please use something like xdm, gdm or kdm for starting X on a harddisk system!" ; eend 1
1697   fi
1698  else
1699    eerror "/usr/X11R6/bin/X is not present on this grml flavour.
1700    Boot parameter startx does not work therefore." ; eend 1
1701  fi
1702 fi
1703 }
1704 # }}}
1705
1706 # {{{ configuration framework
1707 config_extract(){
1708 if checkbootparam extract ; then
1709  EXTRACT="$(getbootparam 'extract' 2>>$DEBUG)"
1710  EXTRACTOPTIONS="-- -x $EXTRACT"
1711 fi
1712 }
1713
1714 config_automount(){
1715 if checkbootparam noautoconfig -o checkbootparam forensic ; then
1716   ewarn "Skipping running automount of device(s) labeled GRMLCFG as requested." ; eend 0
1717 else
1718  if [ -z "$INSTALLED" ] ; then
1719   einfo "Searching for device(s) labeled with GRMLCFG." ; eend 0
1720   eindent
1721   [ -d /mnt/grml ] || mkdir /mnt/grml
1722   umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1723 # We do need the following fix so floppy disk is available to blkid in any case :-/
1724   if [ -r /dev/fd0 ] ; then
1725      einfo "Floppy device detected. Trying to access floppy disk. (Disable this via boot option: noautoconfig)"
1726 #     dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1
1727      if timeout 4 dd if=/dev/fd0 of=/dev/null bs=512 count=1 1>>$DEBUG 2>&1 ; then
1728         blkid /dev/fd0 1>>$DEBUG 2>&1
1729      fi
1730   fi
1731   DEVICE=$(blkid -t LABEL=GRMLCFG | head -1 | awk -F: '{print $1}')
1732   [ -n "$DEVICE" ] && mount -t auto -o ro $DEVICE /mnt/grml ; RC="$?"
1733   if [[ $RC == 0 ]]; then
1734     einfo "Mounting device $DEVICE labeled GRMLCFG succeeded." ; eend 0
1735
1736     CONFIG=''
1737     CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1738     if [ -n "$CONFIG" ]; then
1739       einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1740       cd /
1741       unp $CONFIG $EXTRACTOPTIONS ; eend $?
1742     else
1743       ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1744     fi
1745
1746     SCRIPT=''
1747     SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1748     if [ -n "$SCRIPT" ]; then
1749       einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1750       $SCRIPT ; eend $?
1751     fi
1752     grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1753   else
1754     ewarn "No devices with label GRMLCFG found." ; eend 0
1755   fi
1756   eoutdent
1757  fi
1758 fi
1759 }
1760
1761 config_myconfig(){
1762 if checkbootparam myconfig ; then
1763  MOUNTDEVICE="$(getbootparam 'myconfig' 2>>$DEBUG)"
1764  if [ -n "$MOUNTDEVICE" ]; then
1765    if checkbootparam file ; then
1766     FILENAME="$(getbootparam 'file' 2>>$DEBUG)"
1767     [ -n "$FILENAME" ] || FILENAME='config.tbz'
1768    fi
1769    [ -d /mnt/grml ] || mkdir /mnt/grml
1770    umount /mnt/grml 1>>$DEBUG 2>&1 # make sure it is not mounted
1771    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1772     if [[ $RC == 0 ]]; then
1773       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1774       eindent
1775       CONFIG=''
1776       CONFIG="$(/bin/ls -1d /mnt/grml/[Cc][Oo][Nn][Ff][Ii][Gg].[Tt][Bb][Zz] 2>>$DEBUG)"
1777       if [ -n "$CONFIG" ]; then
1778         einfo "Found file ${WHITE}${CONFIG}${NORMAL} - trying to extract it."
1779         cd /
1780         unp $CONFIG $EXTRACTOPTIONS ; eend $?
1781       else
1782         ewarn "Sorry, could not find file config.tbz on device with label GRMLCFG." ; eend 1
1783       fi
1784
1785       SCRIPT=''
1786       SCRIPT="$(/bin/ls -1d /mnt/grml/[Gg][Rr][Mm][Ll].[Ss][Hh] 2>>$DEBUG)"
1787       if [ -n "$SCRIPT" ]; then
1788         einfo "Found script ${WHITE}${SCRIPT}${NORMAL} - trying to execute it."
1789         $SCRIPT ; eend $?
1790       fi
1791       eoutdent
1792     else
1793       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1794     fi # mount $MOUNTDEVICE
1795    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1796  else
1797    einfo "Sorry, no device for bootoption myconfig provided. Skipping." ; eend 1
1798  fi # [ -n "$MOUNTDEVICE" ]
1799 fi # checkbootparam myconfig
1800
1801 if checkbootparam "partconf" ; then
1802  MOUNTDEVICE="$(getbootparam 'partconf' 2>>$DEBUG)"
1803  if [ -n "$MOUNTDEVICE" ]; then
1804    [ -d /mnt/grml ] || mkdir /mnt/grml
1805    mount -o ro -t auto $MOUNTDEVICE /mnt/grml ; RC="$?"
1806     if [[ $RC == 0 ]]; then
1807       einfo "Successfully mounted $MOUNTDEVICE to /mnt/grml (readonly)." ; eend 0
1808       einfo "Copying files from $MOUNTDEVICE over grml system."
1809       for file in `cat /etc/grml/partconf` ; do
1810         [ -d /mnt/grml/$file ] && cp -a /mnt/grml/${file}* ${file} && echo "copied: $file"
1811         [ -f /mnt/grml/$file ] && cp -a /mnt/grml/${file}  ${file} && echo "copied: $file"
1812       done && eend 0
1813     else
1814       einfo "Could not mount $MOUNTDEVICE to /mnt/grml - sorry." ; eend 1
1815     fi # mount $MOUNTDEVICE
1816    grep -q '/mnt/grml' /proc/mounts && umount /mnt/grml
1817  else
1818    einfo "Sorry, no device for bootoption partconf provided. Skipping." ; eend 1
1819  fi # [ -n "$MOUNTDEVICE" ]
1820 fi
1821 }
1822 # }}}
1823
1824 # {{{ /cdrom/.*-options
1825 config_debs(){
1826 if checkbootparam "debs" ; then
1827   DEBS="$(getbootparam 'debs' 2>>$DEBUG)"
1828   einfo "Tring to install debian package(s) ${DEBS}"
1829   dpkg -i /cdrom/debs/$DEBS* ; eend $?
1830 fi
1831 }
1832
1833 config_config(){
1834 if checkbootparam "config" ; then
1835   CONFIG="$(getbootparam 'config' 2>>$DEBUG)"
1836   [ -z "$CONFIG" ] && CONFIG='config.tbz'
1837   einfo "Bootoption config found. config is set to: $CONFIG"
1838   eindent
1839     einfo "Trying to extract configuration file ${CONFIG}:"
1840     cd / && unp /cdrom/config/$CONFIG $EXTRACTOPTIONS ; eend $?
1841   eoutdent
1842 fi
1843 }
1844
1845 config_scripts(){
1846 if checkbootparam "scripts" ; then
1847   SCRIPTS="$(getbootparam 'scripts' 2>>$DEBUG)"
1848   [ -z "$SCRIPTS" ] && SCRIPTS='grml.sh'
1849   einfo "Bootparameter scripts found. Trying to execute ${SCRIPTS}:"
1850   sh -c /cdrom/scripts/$SCRIPTS ; eend $?
1851 fi
1852 }
1853 # }}}
1854
1855 # {{{ distcc
1856 config_distcc(){
1857 if checkbootparam "distcc" ; then
1858  OPTIONS="$(getbootparam distcc 2>>$DEBUG)"
1859  if [ -n "$OPTIONS" ]; then
1860     NET=""
1861     INTERFACE=""
1862     if [ -n "$OPTIONS" ]; then
1863       NET="${OPTIONS%%,*}"
1864       R="${OPTIONS#*,}"
1865       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1866         OPTIONS="$R"
1867         INTERFACE="${OPTIONS%%,*}"
1868         R="${OPTIONS#*,}"
1869       fi
1870     fi
1871  fi
1872  CONFIG=/etc/default/distcc
1873  sed -i "s#^STARTDISTCC=.*#STARTDISTCC=YES#"  $CONFIG
1874  sed -i "s#^ALLOWEDNETS=.*#ALLOWEDNETS=$NET#" $CONFIG
1875
1876  if [ -n "$INTERFACE" ] ; then
1877    IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1878
1879    counter=10
1880    while [ -z "$IP" ] && [[ "$counter" != 0 ]] ; do
1881      counter=$(( counter-1 ))
1882      ewarn "No ip address for $INTERFACE found. Sleeping for 3 seconds. $counter tries left."
1883      sleep 3
1884      IP=$(LANG=C ifconfig $INTERFACE | gawk -F: /"inet addr"/'{print $2}' | gawk '{print $1}')
1885    done
1886  fi
1887
1888  if [ -n "$IP" ] ; then
1889    sed -i "s#^LISTENER=.*#LISTENER=$IP#"      $CONFIG
1890
1891    einfo "Bootoption distcc found. Preparing setup for distcc daemon."
1892    eindent
1893     id distccd >/dev/null 2>&1 || \
1894     (
1895       einfo "Creating distcc user" ; \
1896       adduser --quiet --system --ingroup nogroup --home / --no-create-home distccd ; eend $?
1897     )
1898
1899     einfo "Starting distcc for network ${NET}, listening on ${IP}."
1900    /etc/init.d/distcc start 1>/dev/null ; eend $?
1901    eoutdent
1902  else
1903    eerror "No ip address for $INTERFACE found. distcc can not be used without it." ; eend 1
1904  fi
1905 fi
1906
1907 if checkbootparam "gcc"; then
1908  GCC="$(getbootparam gcc 2>>$DEBUG)"
1909  eindent
1910  einfo "Pointing /usr/bin/gcc to /usr/bin/gcc-${GCC}."
1911  eoutdent
1912  rm -f /usr/bin/gcc
1913  ln -s /usr/bin/gcc-${GCC} /usr/bin/gcc ; eend $?
1914 fi
1915
1916 if checkbootparam "gpp"; then
1917  GPP="$(getbootparam gpp 2>>$DEBUG)"
1918  eindent
1919   einfo "Pointing /usr/bin/g++ to /usr/bin/g++-${GPP}."
1920   if [ -x /usr/bin/g++-${GPP} ] ; then
1921      rm -f /usr/bin/g++
1922      ln -s /usr/bin/g++-${GPP} /usr/bin/g++ ; eend $?
1923   fi
1924   einfo "Pointing /usr/bin/cpp to /usr/bin/cpp-${GPP}."
1925   if [ -x /usr/bin/cpp-${GPP} ] ; then
1926      rm -f /usr/bin/cpp
1927      ln -s /usr/bin/cpp-${GPP} /usr/bin/cpp ; eend $?
1928   fi
1929  eoutdent
1930 fi
1931
1932 }
1933 # }}}
1934
1935 # {{{ load modules
1936 # Notice: use it only on live-cd system, if running from harddisk please
1937 # add modules to /etc/modules and activate /etc/init.d/module-init-tools
1938 # in /etc/runlevel.conf
1939 config_modules(){
1940 MODULES_FILE=/etc/grml/modules
1941 if checkbootparam nomodules ; then
1942   ewarn "Skipping loading of modules defined in ${MODULES_FILE} as requested." ; eend 0
1943 elif [ -z "$INSTALLED" ]; then
1944  if [ -r $MODULES_FILE ] ; then
1945   einfo "Loading modules specified in ${MODULES_FILE}:"
1946   eindent
1947   grep '^[^#]' $MODULES_FILE | \
1948   while read module args; do
1949     [ "$module" ] || continue
1950       einfo "${module}"
1951       modprobe $module $args ; eend $?
1952   done
1953   eoutdent
1954  else
1955   ewarn "File $MODULES_FILE does not exist. Skipping loading of specific modules." ; eend 1
1956  fi
1957 fi
1958 }
1959 # }}}
1960
1961 # {{{ 915resolution
1962 config_915resolution(){
1963 if checkbootparam "915resolution" ; then
1964  OPTIONS="$(getbootparam 915resolution 2>>$DEBUG)"
1965   if [ -x /usr/sbin/915resolution ]; then
1966     CMD=915resolution
1967     MODE=""
1968     XRESO=""
1969     YRESO=""
1970     if [ -n "$OPTIONS" ]; then
1971       # Extra options
1972       MODE="${OPTIONS%%,*}"
1973       R="${OPTIONS#*,}"
1974       if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1975         OPTIONS="$R"
1976         XRESO="${OPTIONS%%,*}"
1977         R="${OPTIONS#*,}"
1978         if [ -n "$R" -a "$R" != "$OPTIONS" ]; then
1979           OPTIONS="$R"
1980           YRESO="${OPTIONS%%,*}"
1981           R="${OPTIONS#*,}"
1982         fi
1983       fi
1984     fi
1985     einfo "Running 915resolution with options ${MODE} ${XRESO} ${YRESO}."
1986     [ -n "$MODE" ] && [ -n "$XRESO"  ] && [ -n "$YRESO" ]  && ( sh -c "$CMD $MODE $XRESO $YRESO" & )
1987     eend 0
1988   fi
1989 fi
1990 }
1991 # }}}
1992
1993 # {{{ SW-RAID
1994 config_swraid(){
1995   if [ -z "$INSTALLED" ] ; then
1996   # notice: checkbootparam "forensic" is just for users who don't know how to really use the bootoption
1997   if checkbootparam "noraid" -o checkbootparam "forensic" -o checkbootparam "raid=noautodetect" ; then
1998      ewarn "Skipping search for SW-RAID as requested on boot commandline." ; eend 0
1999   else
2000     if ! [ -x /sbin/mdadm ] ; then
2001        eerror "mdadm not available, can not execute it." ; eend 1
2002     else
2003
2004        einfo "Searching for software RAID arrays (disable via bootoption noraid):"
2005        eindent
2006          IFSOLD=${IFS:-}
2007          IFS='
2008 '
2009          for line in $(mdadm --assemble --scan --auto=yes --symlink=no 2>&1) ; do
2010              case $line in
2011                *'No arrays found'*)
2012                  ewarn "$line" ; eend 0
2013                  ;;
2014                *)
2015                  einfo "$line" ; eend 0
2016                  ;;
2017              esac
2018          done
2019          IFS=$IFSOLD
2020        eoutdent
2021
2022        if [ -r /proc/mdstat ] ; then
2023           eindent
2024           MDSTAT=$(grep '^md[0-9]' /proc/mdstat)
2025           if [ -z "$MDSTAT" ] ; then
2026              ewarn "No active arrays found" ; eend 0
2027           else
2028              IFSOLD=${IFS:-}
2029              IFS='
2030 '
2031              for line in $(grep '^md[0-9]' /proc/mdstat) ; do
2032                  einfo "active arrays: $line" ; eend 0
2033              done
2034              IFS=$IFSOLD
2035           fi
2036           eoutdent
2037        fi
2038
2039      fi # is /sbin/mdadm executable?
2040   fi # check for bootoptions
2041   fi # run only in live-cd mode
2042 }
2043 # }}}
2044
2045 # {{{ debnet: setup network based on an existing one found on a partition
2046 config_debnet(){
2047 if checkbootparam "debnet" ; then
2048  iszsh && setopt shwordsplit
2049  DEVICES="$(< /proc/partitions tail -n +3 | awk '{print "/dev/"$4}' | tr "\n" " ")"
2050  DEVICES="$DEVICES $(ls /dev/mapper/*)"
2051  FOUND_DEBNET=""
2052
2053  einfo "Bootoption 'debnet' found. Searching for Debian network configuration: "
2054  eindent
2055  if ! mount | grep '/mnt ' 1>/dev/null 2>&1 ; then
2056     for i in $DEVICES; do
2057      if mount -o ro -t auto "$i" /mnt >/dev/null 2>&1; then
2058          einfo "Scanning on $i"
2059        if [ -f /mnt/etc/network/interfaces ]; then
2060          einfo "/etc/network/interfaces found on ${i}" ; eend 0
2061          FOUND_DEBNET="$i"
2062          break
2063        fi
2064        umount /mnt
2065      fi
2066     done
2067
2068    if [ -n "$FOUND_DEBNET" ]; then
2069      einfo "Stopping network."
2070        pump -k 1>/dev/null 2>&1
2071        /etc/init.d/networking stop 1>/dev/null 2>&1 ; eend $?
2072      einfo "Copying Debian network configuration from $FOUND_DEBNET to running system."
2073        rm -rf /etc/network/run
2074        cp -a /mnt/etc/network /etc
2075        rm -rf /etc/network/run
2076        mkdir /etc/network/run
2077        umount /mnt ; eend $?
2078      einfo "Starting network."
2079        /etc/init.d/networking start ; eend $?
2080    else
2081      eerror "/etc/network/interfaces not found." ; eend 1
2082    fi
2083    eoutdent
2084  else
2085   eerror "Error: /mnt already mounted." ; eend 1
2086  fi
2087 fi
2088 }
2089 # }}}
2090
2091 # {{{ disable console blanking
2092 config_blanking(){
2093 if checkbootparam "noblank" ; then
2094   einfo "Bootoption noblank found. Disabling monitor blanking."
2095   setterm -blank 0 ; eend $?
2096 fi
2097 }
2098 # }}}
2099
2100 # {{{ grml2hd: automatic installation
2101 config_grml2hd(){
2102
2103 if checkbootparam "user" ; then
2104   NEWUSER=''
2105   NEWUSER="$(getbootparam 'user' 2>>$DEBUG)"
2106   sed -i "s/^NEWUSER=.*/NEWUSER=$NEWUSER/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2107 fi
2108
2109 if checkbootparam "filesystem" ; then
2110   FILESYSTEM=''
2111   FILESYSTEM="$(getbootparam 'filesystem' 2>>$DEBUG)"
2112   sed -i "s/^FILESYSTEM=.*/FILESYSTEM=$FILESYSTEM/" /etc/grml2hd/config || export GRML2HD_FAIL=1
2113 fi
2114
2115 if checkbootparam "partition" ; then
2116   PARTITION=''
2117   PARTITION="$(getbootparam 'partition' 2>>$DEBUG)"
2118   # notice: the following checks whether the given partition is available, if not the skip
2119   # execution of grml2hd as it might result in data loss...
2120   if [ -r $PARTITION ] ; then
2121     sed -i "s#^PARTITION=.*#PARTITION=$PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2122   else
2123     ewarn "Partition $PARTITION does not exist. Skipping execution of grml2hd therefore." ; eend 1
2124   fi
2125 fi
2126
2127 if checkbootparam "mbr" ; then
2128   BOOT_PARTITION=''
2129   BOOT_PARTITION="$(getbootparam 'mbr' 2>>$DEBUG)"
2130   sed -i "s#^BOOT_PARTITION=.*#BOOT_PARTITION=$BOOT_PARTITION#" /etc/grml2hd/config || export GRML2HD_FAIL=1
2131 fi
2132
2133 if stringinstring "BOOT_IMAGE=grml2hd " "$CMDLINE" ; then
2134   cat>|/usr/bin/grml2hd_noninteractive<<EOF
2135 #!/bin/sh
2136 GRML2HD_NONINTERACTIVE='yes' grml2hd
2137 EOF
2138   chmod 755 /usr/bin/grml2hd_noninteractive
2139   einfo "Bootparameter grml2hd found. Running automatic installation via grml2hd using /etc/grml2hd/config." && eend 0
2140   if [ -z "$GRML2HD_FAIL" ] ; then
2141     screen /usr/bin/grml2hd_noninteractive ; einfo "Invoking a shell, just exit to continue booting..." ; /bin/zsh
2142   else
2143     ewarn "There was an error adjusting /etc/grml2hd/config. Skipping execution of grml2hd for security reasons." ; eend 1
2144   fi
2145 fi
2146 }
2147 # }}}
2148
2149 ### {{{ backwards compatible stuff
2150 config_environment(){
2151   ewarn "config_environment is deprecated. Please set CONFIG_ENVIRONMENT in /etc/grml/autoconfig to 'no'." ; eend 0
2152 }
2153 config_running_from() {
2154   ewarn "config_running_from is deprecated. Please set CONFIG_RUNNING_FROM in /etc/grml/autoconfig to 'no'." ; eend 0
2155 }
2156 config_keyboard(){
2157   ewarn "config_keyboard is deprecated. Please set CONFIG_KEYBOARD in /etc/grml/autoconfig to 'no'." ; eend 0
2158 }
2159 # }}}
2160
2161 ## END OF FILE #################################################################
2162 # vim:foldmethod=marker