X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/b95109266d0270cdd4420f11110b0e946ab1529a..7ae2f4974863322a7ca42c58031d0e5f1293eff7:/package/base-files/files/etc/hotplug2-common.rules

diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules
index 5221457a5..a96a8fa76 100644
--- a/package/base-files/files/etc/hotplug2-common.rules
+++ b/package/base-files/files/etc/hotplug2-common.rules
@@ -1,57 +1,48 @@
 
 # uncomment me to log hotplug events
 # DEVPATH is set {
-# 	nothrottle
 # 	exec logger -s -t hotplug -p daemon.info "name=%DEVICENAME%, path=%DEVPATH%"
 # }
 
-DEVICENAME ~~ (null|full|ptmx|tty|zero|gpio|hvc) {
-	nothrottle
+$include /etc/hotplug2-platform.rules
+
+DEVICENAME ~~ (^null$|^full$|^ptmx$|^tty|^zero$|^gpio|^hvc) {
 	makedev /dev/%DEVICENAME% 0666
-	next
+	next-event
 }
 
-DEVICENAME ~~ (tun|tap[0-9]) {
-	nothrottle
+DEVICENAME ~~ (^tun|^tap[0-9]$) {
 	makedev /dev/net/%DEVICENAME% 0644
 }
 
-DEVICENAME ~~ (ppp) {
-	nothrottle
+DEVICENAME ~~ ^ppp {
 	makedev /dev/%DEVICENAME% 0600
-	next
 }
 
-DEVICENAME ~~ (controlC[0-9]|pcmC0D0*|timer) {
-	nothrottle
+DEVICENAME ~~ (^controlC[0-9]$|^pcmC[0-9]D[0-9]|^timer$) {
 	makedev /dev/snd/%DEVICENAME% 0644
-	next
+	next-event
 }
 
-DEVICENAME ~~ (lp[0-9]) {
-	nothrottle
+DEVICENAME ~~ ^lp[0-9]$ {
 	makedev /dev/%DEVICENAME% 0644
-	next
+	next-event
 }
 
-DEVPATH is set, SUBSYSTEM ~~ (input) {
-	nothrottle
+DEVPATH is set, SUBSYSTEM == input {
 	makedev /dev/input/%DEVICENAME% 0644
 }
 
 DEVICENAME == device-mapper {
-	nothrottle
 	makedev /dev/mapper/control 0600
 }
 
-
 DEVPATH is set {
-	nothrottle
 	makedev /dev/%DEVICENAME% 0644
 }
 
 FIRMWARE is set, ACTION == add {
-	nothrottle
+	exec /sbin/hotplug-call firmware
 	load-firmware /lib/firmware
-	next
+	next-event
 }