summaryrefslogtreecommitdiff
path: root/package/base-files/files.old/etc/hotplug2-common.rules
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-03-13 18:11:19 +0000
committerJohn Crispin <john@openwrt.org>2013-03-13 18:11:19 +0000
commitf43b7934d2850c2f545736253a0f8cbe4915fdff (patch)
tree3718ca82dd27e3917a51439823bfb20a067af784 /package/base-files/files.old/etc/hotplug2-common.rules
parent1360067c4a75cd1804710e6f25871f695d3271b2 (diff)
downloadmtk-20170518-f43b7934d2850c2f545736253a0f8cbe4915fdff.zip
mtk-20170518-f43b7934d2850c2f545736253a0f8cbe4915fdff.tar.gz
mtk-20170518-f43b7934d2850c2f545736253a0f8cbe4915fdff.tar.bz2
make basefiles aware of procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36003
Diffstat (limited to 'package/base-files/files.old/etc/hotplug2-common.rules')
-rw-r--r--package/base-files/files.old/etc/hotplug2-common.rules43
1 files changed, 43 insertions, 0 deletions
diff --git a/package/base-files/files.old/etc/hotplug2-common.rules b/package/base-files/files.old/etc/hotplug2-common.rules
new file mode 100644
index 0000000..c284f8f
--- /dev/null
+++ b/package/base-files/files.old/etc/hotplug2-common.rules
@@ -0,0 +1,43 @@
+
+# uncomment me to log hotplug events
+# DEVPATH is set {
+# exec logger -s -t hotplug -p daemon.info "name=%DEVNAME%, path=%DEVPATH%"
+# }
+
+$include /etc/hotplug2-platform.rules
+
+DEVNAME ~~ (^null$|^full$|^ptmx$|^zero$|^gpio|^hvc) {
+ makedev /dev/%DEVNAME% 0666
+ next-event
+}
+
+DEVNAME == mapper/control {
+ makedev /dev/%DEVNAME% 0600
+ next-event
+}
+
+ACTION == add, DEVPATH is set {
+ makedev /dev/%DEVNAME% 0644
+}
+
+ACTION == add, DEVPATH is set, DEVNAME ~~ ^tty {
+ chmod 0666 /dev/%DEVNAME%
+}
+
+ACTION == add, DEVPATH is set, DEVNAME ~~ ^ppp {
+ chmod 0600 /dev/%DEVNAME%
+}
+
+ACTION == remove, DEVPATH is set, MAJOR is set, MINOR is set {
+ remove /dev/%DEVNAME%
+}
+
+FIRMWARE is set, ACTION == add {
+ exec /sbin/hotplug-call firmware
+ load-firmware /lib/firmware
+ next-event
+}
+
+SUBSYSTEM == platform {
+ exec /sbin/hotplug-call %SUBSYSTEM%
+}