mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-01 09:33:09 +01:00
This change adds a udev rules file to group input devices (via symlinks) under their usual expected location of /dev/input. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 10804
9 lines
266 B
Text
9 lines
266 B
Text
# Input devices, group under /dev/input
|
|
SUBSYSTEM!="input", GOTO="input_grouping_end"
|
|
|
|
KERNEL=="event[0-9]*", NAME="input/%k"
|
|
KERNEL=="mice", NAME="input/%k"
|
|
KERNEL=="mouse[0-9]*", NAME="input/%k"
|
|
KERNEL=="js[0-9]*", NAME="input/%k"
|
|
|
|
LABEL="input_grouping_end"
|