procd: fix file permissions of /dev/tty* nodes

Signed-off-by: John Crispin <john@phrozen.org>
master
John Crispin 8 years ago
parent 563e9d5e1b
commit 7cc4fa1ae1
  1. 6
      package/system/procd/files/hotplug.json

@ -10,7 +10,7 @@
[ "if",
[ "or",
[ "eq", "DEVNAME",
[ "null", "full", "ptmx", "zero" ],
[ "null", "full", "ptmx", "zero", "tty" ],
],
[ "regex", "DEVNAME",
[ "^gpio", "^hvc" ],
@ -31,6 +31,10 @@
[ "return" ],
],
],
[ "if",
[ "regex", "DEVNAME", "^ttyS" ],
[ "makedev", "/dev/%DEVNAME%", "0664" ],
],
[ "if",
[ "has", "DEVNAME" ],
[ "makedev", "/dev/%DEVNAME%", "0644" ],

Loading…
Cancel
Save