From 5209cfa534293cb6d27574b51d03bd69a5defb0c Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Fri, 18 Aug 2017 15:06:25 +0200 Subject: [PATCH] procd: fix hotplug.json syntax Signed-off-by: Florian Eckert --- package/system/procd/files/hotplug.json | 26 +++++++++++-------------- 1 file 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%" ] ] - ], + ] ] -- 2.35.1