X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/3abdc13b68b44631def95b57d2c978aad201d945..603d01fbba5d16467af24fa6c1d5902920d36dbb:/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 6bc53dffe..a1d07d399 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -1,52 +1,61 @@ -DEVICENAME ~~ (null|full|ptmx|tty|zero|gpio|hvc) { - nothrottle +# uncomment me to log hotplug events +# DEVPATH is set { +# exec logger -s -t hotplug -p daemon.info "name=%DEVICENAME%, path=%DEVPATH%" +# } + +$include /etc/hotplug2-platform.rules + +DEVICENAME ~~ (^null$|^full$|^ptmx$|^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 - 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 + makedev /dev/mapper/control 0600 + next-event } - -DEVPATH is set { - nothrottle +ACTION == add, DEVPATH is set { makedev /dev/%DEVICENAME% 0644 } -FIRMWARE is set { - nothrottle +ACTION == add, DEVPATH is set, DEVICENAME ~~ ^tty { + chmod 0666 /dev/%DEVICENAME% +} + +ACTION == add, DEVPATH is set, DEVICENAME ~~ ^ppp { + chmod 0600 /dev/%DEVICENAME% +} + +ACTION == remove, DEVPATH is set, MAJOR is set, MINOR is set { + remove /dev/%DEVICENAME% +} + +FIRMWARE is set, ACTION == add { exec /sbin/hotplug-call firmware - next + load-firmware /lib/firmware + next-event +} + +SUBSYSTEM == platform { + exec /sbin/hotplug-call %SUBSYSTEM% }