2
0
forked from Ivasoft/openwrt

refactor hotplug2 rules, make sure that the default button rule is only used during the init (should fix #2772)

SVN-Revision: 9644
This commit is contained in:
Felix Fietkau
2007-12-01 17:08:04 +00:00
parent 40840d495f
commit 9b27c5b585
3 changed files with 37 additions and 36 deletions

View File

@@ -0,0 +1,35 @@
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*|timer) {
nothrottle
makedev /dev/snd/%DEVICENAME% 0644
next
}
DEVPATH is set {
nothrottle
makedev /dev/%DEVICENAME% 0644
}
FIRMWARE is set {
nothrottle
exec /sbin/hotplug-call firmware;
next
}