summaryrefslogtreecommitdiffstats
path: root/initramfs/distro-specs/ubuntu/functions-default
diff options
context:
space:
mode:
authorSebastian Schmelzer2008-09-02 16:29:24 +0200
committerSebastian Schmelzer2008-09-02 16:29:24 +0200
commit80ef1045fa3c98278d880868c461f5ca9604f9ba (patch)
tree5aaa8d2827505b6e8726c43e4af0ae0186a15149 /initramfs/distro-specs/ubuntu/functions-default
parent * fix typo; add check if init script is existing (diff)
downloadcore-80ef1045fa3c98278d880868c461f5ca9604f9ba.tar.gz
core-80ef1045fa3c98278d880868c461f5ca9604f9ba.tar.xz
core-80ef1045fa3c98278d880868c461f5ca9604f9ba.zip
* moved 8.04 modifications to default
* removed exclude variable from default git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2185 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/distro-specs/ubuntu/functions-default')
-rw-r--r--initramfs/distro-specs/ubuntu/functions-default16
1 files changed, 13 insertions, 3 deletions
diff --git a/initramfs/distro-specs/ubuntu/functions-default b/initramfs/distro-specs/ubuntu/functions-default
index 7d08b32c..fbe9f3c6 100644
--- a/initramfs/distro-specs/ubuntu/functions-default
+++ b/initramfs/distro-specs/ubuntu/functions-default
@@ -21,9 +21,9 @@
# D_RODIRSINRW - ReadOnly Directories in RW part of filesystem to save on
# TempFS usage
# D_DIRINDXS - directories in client filesystem which should be present anyhow
-D_ETCEXCL="etc/gconf/*\n*.old\n*-\netc/autoinstall\nlogrotate*\nbootloader\n\
-*~\npptp.d\nisdn\nyouservers\nhardware/hwcfg*\n\
-X11/xdm/pixmaps\ndhclient.script"
+#D_ETCEXCL="etc/gconf/*\n*.old\n*-\netc/autoinstall\nlogrotate*\nbootloader\n\
+#*~\npptp.d\nisdn\nyouservers\nhardware/hwcfg*\n\
+#X11/xdm/pixmaps\ndhclient.script"
D_BINDMPTS="tmp root home media"
D_DIRINBINDMNT="/var/run /var/log /var/tmp /var/lib/gdm"
D_RODIRSINRW="/etc/X11/xkb /var/lib/gconf /var/lib/dpkg /var/lib/aspell \
@@ -118,6 +118,16 @@ sed "s/LANG.*/LANG=\"${LANG}\"/" -i /mnt/etc/default/locale
# group of functions for the normal runlevels - first parameter is start
# second stop
+# configure udev
+config_udev () {
+ if [ -f /mnt/etc/init.d/udev ] ; then
+ rllinker "udev" 7 14
+ fi
+ if [ -f /mnt/etc/init.d/udev-finish ] ; then
+ rllinker "udev-finish" 24 2
+ fi
+}
+
# function for ntp configuration
config_ntp () {
if [ -f /mnt/etc/init.d/ntp -a "x$start_ntp" != "xno" ] ; then