X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/fc6a5146e946d71b799a695540e7f7c444427a3c..271da7f4e93492f377c0fcf25def4591d60b9fbc:/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 96a473116..a96a8fa76 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -1,58 +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 - next } -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 }