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

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin 2016-06-06 00:13:01 +02:00
parent 563e9d5e1b
commit 7cc4fa1ae1

View file

@ -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" ],