| 1 | |
| 2 | DEVICENAME ~~ (null|full|ptmx|tty|zero|gpio|hvc) { |
| 3 | nothrottle |
| 4 | makedev /dev/%DEVICENAME% 0666 |
| 5 | next |
| 6 | } |
| 7 | |
| 8 | DEVICENAME ~~ (tun|tap[0-9]) { |
| 9 | nothrottle |
| 10 | makedev /dev/net/%DEVICENAME% 0644 |
| 11 | } |
| 12 | |
| 13 | DEVICENAME ~~ (ppp) { |
| 14 | nothrottle |
| 15 | makedev /dev/%DEVICENAME% 0600 |
| 16 | next |
| 17 | } |
| 18 | |
| 19 | DEVICENAME ~~ (controlC[0-9]|pcmC0D0*|timer) { |
| 20 | nothrottle |
| 21 | makedev /dev/snd/%DEVICENAME% 0644 |
| 22 | next |
| 23 | } |
| 24 | |
| 25 | DEVICENAME ~~ (lp[0-9]) { |
| 26 | nothrottle |
| 27 | makedev /dev/%DEVICENAME% 0644 |
| 28 | next |
| 29 | } |
| 30 | |
| 31 | DEVPATH is set, SUBSYSTEM ~~ (input) { |
| 32 | nothrottle |
| 33 | makedev /dev/input/%DEVICENAME% 0644 |
| 34 | } |
| 35 | |
| 36 | DEVICENAME == device-mapper { |
| 37 | nothrottle |
| 38 | makedev /dev/mapper/control 0600 |
| 39 | } |
| 40 | |
| 41 | |
| 42 | DEVPATH is set { |
| 43 | nothrottle |
| 44 | makedev /dev/%DEVICENAME% 0644 |
| 45 | } |
| 46 | |
| 47 | FIRMWARE is set, ACTION == add { |
| 48 | nothrottle |
| 49 | load-firmware /lib/firmware |
| 50 | next |
| 51 | } |
| 52 | |