aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files.old/etc/hotplug2-common.rules
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-06-21 16:53:26 +0000
committerJohn Crispin <blogic@openwrt.org>2013-06-21 16:53:26 +0000
commit97520d989f65412c27997ed9bad5879880000c89 (patch)
tree07c20cfc20e3a525c70cf6b2c9ded37c565b91e5 /package/base-files/files.old/etc/hotplug2-common.rules
parent422c9d08dc44f0db6d89d1c86e925e8352346ce5 (diff)
downloadmaster-187ad058-97520d989f65412c27997ed9bad5879880000c89.tar.gz
master-187ad058-97520d989f65412c27997ed9bad5879880000c89.tar.bz2
master-187ad058-97520d989f65412c27997ed9bad5879880000c89.zip
base-files: procd init is now the default, remove files.old
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36996 3c298f89-4303-0410-b956-a3cf2f4a3e73
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, 0 insertions, 43 deletions
diff --git a/package/base-files/files.old/etc/hotplug2-common.rules b/package/base-files/files.old/etc/hotplug2-common.rules
deleted file mode 100644
index c284f8f3fe..0000000000
--- a/package/base-files/files.old/etc/hotplug2-common.rules
+++ /dev/null
@@ -1,43 +0,0 @@
-
-# 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%
-}