summaryrefslogtreecommitdiffstats
path: root/initrd/initrd-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-05-28 21:49:03 +0200
committerDirk von Suchodoletz2006-05-28 21:49:03 +0200
commitfb67f24f4eff46b4792be2cd8a32127e96e44759 (patch)
treeda3a47dc368bcd395e16d3417f0ae25c3c344402 /initrd/initrd-stuff/etc/functions
parentdefault entry for X session ... (diff)
downloadcore-fb67f24f4eff46b4792be2cd8a32127e96e44759.tar.gz
core-fb67f24f4eff46b4792be2cd8a32127e96e44759.tar.xz
core-fb67f24f4eff46b4792be2cd8a32127e96e44759.zip
corrected timing issue for apperance of nbd modules (within init),
placeholder functions for distro specific stuff in /etc/functions ... git-svn-id: http://svn.openslx.org/svn/openslx/ld4@240 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/etc/functions')
-rw-r--r--initrd/initrd-stuff/etc/functions22
1 files changed, 21 insertions, 1 deletions
diff --git a/initrd/initrd-stuff/etc/functions b/initrd/initrd-stuff/etc/functions
index a07ebaef..b240ce4b 100644
--- a/initrd/initrd-stuff/etc/functions
+++ b/initrd/initrd-stuff/etc/functions
@@ -2,14 +2,34 @@
# linux diskless clients (included by init, hwautocfg,
# servconfig, ... within initial ramdisk)
#
-# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 30-04-2006
+# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 28-05-2006
# Felix Endres, 30-04-2006
+# Tobias Maier
#
# Copyright: (c) 2006 - RZ Universitaet Freiburg
#
# Version: 0.4.2d
#######################################################################
+# set of empty dummy functions (loaded before real functions in the
+# distro specific files - to have no undeclared function in init, serv-
+# config, hwautocfg, ...
+
+# distro specific funtion called at the beginning of init script
+preinit () {
+ :
+}
+# distro specific funtion called at the end of init script
+postinit () {
+ :
+}
+# distro specific general function called from servconfig script
+config_distro () {
+ :
+}
+
+
+#######################################################################
# generate events with the sysfs trigger
trigger_device_events () {
list=$(echo /sys/bus/*/devices/*/uevent)