1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 21:09:29 +03:00

[package/udev] 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: Jeremy Kerr <jk@ozlabs.org>



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10804 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jk 2008-04-12 23:24:22 +00:00
parent aff6fa1a1d
commit 9d35bf3e30
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,9 @@
# 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"