mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:57:31 +02:00
8a51d0046e
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19478 3c298f89-4303-0410-b956-a3cf2f4a3e73
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
# Copyright (C) 2010 Vertical Communications
|
|
|
|
init_devfs() {
|
|
HOTPLUG=/sbin/hotplug-call
|
|
}
|
|
|
|
init_hotplug2() {
|
|
[ -c /dev/console ] || mknod /dev/console c 5 1
|
|
/sbin/hotplug2 --set-worker /lib/hotplug2/worker_fork.so --set-rules-file /etc/hotplug2-init.rules --no-persistent --set-coldplug-cmd /sbin/udevtrigger
|
|
/sbin/hotplug2 --set-worker /lib/hotplug2/worker_fork.so --set-rules-file /etc/hotplug2-init.rules --persistent &
|
|
}
|
|
|
|
init_udev() {
|
|
[ -d /lib/udev/devices ] && cp -af /lib/udev/devices/* /dev/
|
|
[ -c /dev/console ] || mknod -m 0600 /dev/console c 5 1
|
|
[ -c /dev/null ] || mknod -m 0666 /dev/null c 1 3
|
|
/sbin/udevd --daemon --resolve-names=never
|
|
/sbin/udevadm trigger
|
|
/sbin/udevadm settle
|
|
}
|
|
|
|
init_device_fs() {
|
|
HOTPLUG=
|
|
if grep -q devfs /proc/filesystems; then
|
|
init_devfs
|
|
elif [ -x /sbin/hotplug2 ]; then
|
|
init_hotplug2
|
|
elif [ -x /sbin/udevd ]; then
|
|
init_udev
|
|
fi
|
|
}
|
|
|
|
boot_hook_add preinit_essential init_device_fs
|
|
|