summaryrefslogtreecommitdiff
path: root/initscripts/initscripts-1.0/sysfs.sh
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-10-13 20:32:07 +0000
committerChris Larson <clarson@kergoth.com>2004-10-13 20:32:07 +0000
commitab07e56981ce6048ee006ac1c7bfb6b767079fb6 (patch)
tree991e44b6877a2bfb323d0956e2d55055e54aa560 /initscripts/initscripts-1.0/sysfs.sh
parent5622d90ad2d7c5233407592b3b5232ef933c21d3 (diff)
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages 2004/10/13 20:37:34+01:00 (none)!pb reorder initscripts to make devices and udev play better together 2004/10/13 20:36:40+01:00 (none)!pb reorder initscripts to make devices and udev play better together BKrev: 416d90c7BonEBv7zQf5T56t8D_tI3g
Diffstat (limited to 'initscripts/initscripts-1.0/sysfs.sh')
-rw-r--r--initscripts/initscripts-1.0/sysfs.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/initscripts/initscripts-1.0/sysfs.sh b/initscripts/initscripts-1.0/sysfs.sh
index e69de29bb2..4486128ad5 100644
--- a/initscripts/initscripts-1.0/sysfs.sh
+++ b/initscripts/initscripts-1.0/sysfs.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+if [ -e /proc ] && ! [ -e /proc/mounts ]; then
+ mount -t proc proc /proc
+fi
+
+if [ -e /sys ] && grep -q sysfs /proc/filesystems; then
+ mount sysfs /sys -t sysfs
+fi
+
+exit 0