hotplug2.rules 396 B

1234567891011121314151617181920212223242526
  1. DEVICENAME ~~ (tun|tap[0-9]) {
  2. nothrottle
  3. makedev /dev/net/%DEVICENAME% 0644
  4. next
  5. }
  6. DEVICENAME ~~ (controlC[0-9]|pcmC0D0*) {
  7. nothrottle
  8. makedev /dev/snd/%DEVICENAME% 0644
  9. next
  10. }
  11. DEVPATH is set {
  12. nothrottle
  13. makedev /dev/%DEVICENAME% 0644
  14. }
  15. FIRMWARE is set {
  16. nothrottle
  17. exec /sbin/hotplug-call firmware;
  18. next
  19. }
  20. SUBSYSTEM ~~ (net|button|usb) {
  21. exec /sbin/hotplug-call %SUBSYSTEM%;
  22. }