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=bb76667bb96fe76e8d152e8071a94f3e93577d6e;hb=f91347ab62ef9458dcb6dea9c1e9aa6c135fb80d;hpb=eb960fbcc136a55a6d3c9ca51b1184325daa8cc6 diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules index bb76667bb9..101d4512fb 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -1,52 +1,57 @@ -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 + next-event } - -DEVPATH is set { - nothrottle +ACTION == add, DEVPATH is set { makedev /dev/%DEVICENAME% 0644 } +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 { - nothrottle + exec /sbin/hotplug-call firmware load-firmware /lib/firmware - next + next-event }