aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package/system/procd/files/hotplug.json26
1 files changed, 11 insertions, 15 deletions
diff --git a/package/system/procd/files/hotplug.json b/package/system/procd/files/hotplug.json
index 168f9b83a8..1c949bbea3 100644
--- a/package/system/procd/files/hotplug.json
+++ b/package/system/procd/files/hotplug.json
@@ -4,31 +4,27 @@
[ "if",
[ "and",
[ "has", "MAJOR" ],
- [ "has", "MINOR" ],
+ [ "has", "MINOR" ]
],
[
[ "if",
[ "eq", "DEVNAME",
- [ "null", "full", "ptmx", "zero", "tty", "net", "random", "urandom" ],
+ [ "null", "full", "ptmx", "zero", "tty", "net", "random", "urandom" ]
],
[
[ "makedev", "/dev/%DEVNAME%", "0666" ],
- [ "return" ],
+ [ "return" ]
]
],
[ "if",
[ "regex", "DEVNAME", "^snd" ],
- [ "makedev", "/dev/%DEVNAME%", "0660", "audio" ],
- ],
- [ "if",
- [ "regex", "DEVNAME", "^tty" ],
- [ "makedev", "/dev/%DEVNAME%", "0660", "tty" ],
+ [ "makedev", "/dev/%DEVNAME%", "0660", "audio" ]
],
[ "if",
[ "has", "DEVNAME" ],
- [ "makedev", "/dev/%DEVNAME%", "0600" ],
- ],
- ],
+ [ "makedev", "/dev/%DEVNAME%", "0600" ]
+ ]
+ ]
],
[ "if",
[ "has", "FIRMWARE" ],
@@ -37,14 +33,14 @@
[ "load-firmware", "/lib/firmware" ],
[ "return" ]
]
- ],
+ ]
],
"remove" : [
[ "if",
[ "and",
[ "has", "DEVNAME" ],
[ "has", "MAJOR" ],
- [ "has", "MINOR" ],
+ [ "has", "MINOR" ]
],
[ "rm", "/dev/%DEVNAME%" ]
]
@@ -53,7 +49,7 @@
[ "if",
[ "and",
[ "has", "BUTTON" ],
- [ "eq", "SUBSYSTEM", "button" ],
+ [ "eq", "SUBSYSTEM", "button" ]
],
[ "button", "/etc/rc.button/%BUTTON%" ]
],
@@ -69,5 +65,5 @@
[ "isdir", "/etc/hotplug.d/%SUBSYSTEM%" ],
[ "exec", "/sbin/hotplug-call", "%SUBSYSTEM%" ]
]
- ],
+ ]
]