diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-23 06:23:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-23 06:23:33 +0000 |
commit | 00b56dd8e23d654939ea37af86f7c0e7e201a2e1 (patch) | |
tree | dbc18ad6ba6a9fb385c52feb629177220ab4cd21 | |
parent | a7c0ef0c987f94d1542f4dafc96159513eb248ce (diff) | |
download | upstream-00b56dd8e23d654939ea37af86f7c0e7e201a2e1.tar.gz upstream-00b56dd8e23d654939ea37af86f7c0e7e201a2e1.tar.bz2 upstream-00b56dd8e23d654939ea37af86f7c0e7e201a2e1.zip |
only do hotplug2 init if hotplug2 is present
The current /init script unconditionally does the initialisation for
hotplug2, including mounting a new /dev. If hotplug2 isn't present, we
end up with no device nodes.
This change only does the hotplug2 init if hotplug2 is present, but
always mounts /sys.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9411 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | target/linux/generic-2.6/base-files/init | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/base-files/init b/target/linux/generic-2.6/base-files/init index 9f595c0f95..98002aba3d 100755 --- a/target/linux/generic-2.6/base-files/init +++ b/target/linux/generic-2.6/base-files/init @@ -3,11 +3,12 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin mount none /proc -t proc +mount none /sys -t sysfs if grep devfs /proc/filesystems > /dev/null; then mount none /dev -t devfs -else - mount -t sysfs none /sys + +elif [ -x /sbin/hotplug2 ]; then mount -t tmpfs tmpfs /dev -o size=512K mknod /dev/console c 5 1 mkdir /dev/pts |