diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-09 00:13:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-09 00:13:47 +0000 |
commit | 0e387805fbb995d12a6c71337f8873ec61326876 (patch) | |
tree | f4aa4be06a726b90e613934f08a0193c06acc986 /package/base-files/files/etc | |
parent | 3a88b0b94da4802ec84d4e7b511a275df86a7796 (diff) | |
download | mtk-20170518-0e387805fbb995d12a6c71337f8873ec61326876.zip mtk-20170518-0e387805fbb995d12a6c71337f8873ec61326876.tar.gz mtk-20170518-0e387805fbb995d12a6c71337f8873ec61326876.tar.bz2 |
hotplug2 update - include hotplug2-init.rules from hotplug2.rules, fix permissions of various devices (fixes #2052)
SVN-Revision: 7892
Diffstat (limited to 'package/base-files/files/etc')
-rw-r--r-- | package/base-files/files/etc/hotplug2-init.rules | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug2-init.rules b/package/base-files/files/etc/hotplug2-init.rules index 098ad04..bcc4c6a 100644 --- a/package/base-files/files/etc/hotplug2-init.rules +++ b/package/base-files/files/etc/hotplug2-init.rules @@ -1,12 +1,34 @@ + +DEVICENAME ~~ (null|full|ptmx|tty|zero) { + nothrottle + makedev /dev/%DEVICENAME% 0666 + next +} + DEVICENAME ~~ (tun|tap[0-9]) { + nothrottle makedev /dev/net/%DEVICENAME% 0644 next } +DEVICENAME ~~ (ppp) { + nothrottle + makedev /dev/%DEVICENAME% 0600 + next +} + +DEVICENAME ~~ (controlC[0-9]|pcmC0D0*) { + nothrottle + makedev /dev/snd/%DEVICENAME% 0644 + next +} + DEVPATH is set { + nothrottle makedev /dev/%DEVICENAME% 0644 } + SUBSYSTEM ~~ button { exec kill -USR1 1 ; } |