diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | rules/50-udev-default.rules | 1 |
3 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,11 @@ systemd System and Service Manager +CHANGES WITH 215: + * A new system group "input" is introduced, all input + device nodes get this group assigned. This is useful for + system-level software to get access to input devices. It + complements what is already done for "audio" and "video". + CHANGES WITH 214: * As an experimental feature, udev now tries to lock the @@ -168,7 +168,7 @@ USERS AND GROUPS: even in the very early boot stages, where no other databases and network are available: - tty, dialout, kmem, video, audio, lp, cdrom, tape, disk + audio, cdrom, dialout, disk, input, kmem, lp, tape, tty, video During runtime, the journal daemon requires the "systemd-journal" system group to exist. New journal files will diff --git a/rules/50-udev-default.rules b/rules/50-udev-default.rules index 122d07c9be..1ecd47a237 100644 --- a/rules/50-udev-default.rules +++ b/rules/50-udev-default.rules @@ -23,6 +23,7 @@ KERNEL=="tty[A-Z]*[0-9]|pppox[0-9]*|ircomm[0-9]*|noz[0-9]*|rfcomm[0-9]*", GROUP= SUBSYSTEM=="mem", KERNEL=="mem|kmem|port", GROUP="kmem", MODE="0640" +SUBSYSTEM=="input", GROUP="input" SUBSYSTEM=="input", KERNEL=="js[0-9]*", MODE="0664" SUBSYSTEM=="video4linux", GROUP="video" |