Skip to content
Snippets Groups Projects
Commit 199a79d8 authored by Jeremy Kerr's avatar Jeremy Kerr
Browse files

Group input devices under /dev/input


This change adds a udev rules file to group input devices (via symlinks)
under their usual expected location of /dev/input.

Signed-off-by: default avatarJeremy Kerr <jk@ozlabs.org>

SVN-Revision: 10804
parent 4ec5f133
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,8 @@ define Package/udev/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udevtest $(1)/usr/bin/
install -d -m0775 $(1)/usr/sbin/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/udevmonitor $(1)/usr/sbin/
install -d -m0775 $(1)/etc/udev/rules.d
$(CP) files/20-input-grouping.rules $(1)/etc/udev/rules.d/
endef
define Package/udevtrigger/install
......
# 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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment