X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=package%2Fbase-files%2Ffiles%2Fetc%2Fhotplug2-common.rules;h=101d4512fb798051d1413e20f730bce15a926bf0;hp=d6dd6e8a9b3f50a92f42c99bde1279f12962d537;hb=f91347ab62ef9458dcb6dea9c1e9aa6c135fb80d;hpb=64ba2c201cf4e37e8f7042759bf03ea44c6a2ea4 diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules index d6dd6e8a9b..101d4512fb 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -1,46 +1,57 @@ -DEVICENAME ~~ (null|full|ptmx|tty|zero|gpio) { - 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 } -DEVPATH is set { - nothrottle +DEVICENAME == device-mapper { + makedev /dev/mapper/control 0600 + next-event +} + +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 }