summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/etc/functions
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs/initrd-stuff/etc/functions')
-rw-r--r--initramfs/initrd-stuff/etc/functions12
1 files changed, 11 insertions, 1 deletions
diff --git a/initramfs/initrd-stuff/etc/functions b/initramfs/initrd-stuff/etc/functions
index 4ede90c6..75af6c29 100644
--- a/initramfs/initrd-stuff/etc/functions
+++ b/initramfs/initrd-stuff/etc/functions
@@ -2,7 +2,7 @@
# (included by init, hwautocfg, servconfig, ... within OpenSLX initial
# ramfs)
#
-# Dirk von Suchodoletz <dvs@OpenSLX.com>, 19-11-2006
+# Dirk von Suchodoletz <dvs@OpenSLX.com>, 14-12-2006
# Felix Endres, 30-04-2006
# <mj0@uni-freiburg.de> (xenbr), 12-12-2006
# Tobias Maier
@@ -113,6 +113,16 @@ else
fi
return 0
}
+# standard sleep command
+sleep () {
+if [ -x /bin/sleep ]; then
+ /bin/sleep $1
+#elif [ -x /bin/bash ]; then
+# TMOUT=$1 read
+else
+ usleep `expr $1 \* 100`
+fi
+}
#############################################################################
# (re)generate dynamic linked libraries cache from /etc/ld.so.conf
ldcfg () {