diff options
Diffstat (limited to 'package/system/procd')
-rw-r--r-- | package/system/procd/files/hotplug.json | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/package/system/procd/files/hotplug.json b/package/system/procd/files/hotplug.json index de8ba105c5..5f768f4eeb 100644 --- a/package/system/procd/files/hotplug.json +++ b/package/system/procd/files/hotplug.json @@ -10,7 +10,7 @@ [ "if", [ "or", [ "eq", "DEVNAME", - [ "null", "full", "ptmx", "zero", "tty" ], + [ "null", "full", "ptmx", "zero", "tty", "net", "random", "urandom" ], ], [ "regex", "DEVNAME", [ "^gpio", "^hvc" ], @@ -22,26 +22,16 @@ ] ], [ "if", - [ "or", - [ "eq", "DEVNAME", "mapper/control" ], - [ "regex", "DEVPATH", "^ppp" ], - ], - [ - [ "makedev", "/dev/%DEVNAME%", "0600" ], - [ "return" ], - ], + [ "eq", "DEVNAME", "kmsg" ], + [ "makedev", "/dev/%DEVNAME%", "0644" ], ], [ "if", [ "regex", "DEVNAME", "^snd" ], [ "makedev", "/dev/%DEVNAME%", "0660", "audio" ], ], [ "if", - [ "regex", "DEVNAME", "^ttyS" ], - [ "makedev", "/dev/%DEVNAME%", "0664" ], - ], - [ "if", [ "has", "DEVNAME" ], - [ "makedev", "/dev/%DEVNAME%", "0644" ], + [ "makedev", "/dev/%DEVNAME%", "0600" ], ], ], ], |