2
0
forked from Ivasoft/openwrt

Add udev initilisation

We have a udev package, but no means to start udev at boot.

This change adds the necessary startup in /init, and adds the required
/sbin/udevsettle to the udev installed files

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>

SVN-Revision: 9412
This commit is contained in:
Felix Fietkau
2007-10-23 06:23:36 +00:00
parent b513ee61a5
commit a10edd4cee
2 changed files with 15 additions and 0 deletions

View File

@@ -14,6 +14,20 @@ elif [ -x /sbin/hotplug2 ]; then
mkdir /dev/pts
mkdir /dev/shm
/sbin/hotplug2 --no-persistent --coldplug --max_children 1
elif [ -x /sbin/udevd ]; then
mount -n -t tmpfs -o mode=0755 udev /dev
mkdir /dev/pts
mkdir /dev/shm
if [ -e /proc/sys/kernel/hotplug ]; then
echo "" > /proc/sys/kernel/hotplug
fi
/sbin/udevd --daemon
/sbin/udevtrigger
/sbin/udevsettle
fi
mount none /dev/pts -t devpts