summaryrefslogtreecommitdiff
path: root/etc/udev/rules.d/60-persistent-input.rules
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-08-11 14:48:38 +0200
committerKay Sievers <kay.sievers@suse.de>2006-08-11 14:48:38 +0200
commiteb1f908a2b40beefbc376878a4ff4d6d3e0db44c (patch)
treefad6be4424d18e29102d1024d068e8cdf1c46644 /etc/udev/rules.d/60-persistent-input.rules
parent4699afe1fd965e62f69d4c130d58566d17fce657 (diff)
move default rules to etc/udev/rules.d/
Diffstat (limited to 'etc/udev/rules.d/60-persistent-input.rules')
-rw-r--r--etc/udev/rules.d/60-persistent-input.rules28
1 files changed, 28 insertions, 0 deletions
diff --git a/etc/udev/rules.d/60-persistent-input.rules b/etc/udev/rules.d/60-persistent-input.rules
new file mode 100644
index 0000000000..c177e1f19c
--- /dev/null
+++ b/etc/udev/rules.d/60-persistent-input.rules
@@ -0,0 +1,28 @@
+ACTION!="add", GOTO="persistent_input_end"
+SUBSYSTEM!="input", GOTO="persistent_input_end"
+KERNEL=="input[0-9]*", GOTO="persistent_input_end"
+
+# usb devices
+BUS=="usb", IMPORT{program}="usb_id -x"
+BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="01", ENV{ID_CLASS}="kbd"
+BUS=="usb", SYSFS{bInterfaceClass}=="03", SYSFS{bInterfaceProtocol}=="02", ENV{ID_CLASS}="mouse"
+
+# other devices
+DRIVER=="pcspkr", ENV{ID_CLASS}="spkr"
+DRIVER=="atkbd", ENV{ID_CLASS}="kbd"
+DRIVER=="psmouse", ENV{ID_CLASS}="mouse"
+SYSFS{name}=="*dvb*|*DVB*|* IR *", ENV{ID_CLASS}="ir"
+
+ENV{ID_SERIAL}=="", ENV{ID_SERIAL}="noserial"
+
+# by-id links
+KERNEL=="mouse*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-$env{ID_CLASS}"
+KERNEL=="event*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-event-$env{ID_CLASS}"
+
+# by-path
+IMPORT{program}="path_id %p"
+ENV{ID_PATH}=="?*", KERNEL=="mouse*", SYMLINK+="input/by-path/$env{ID_PATH}-$env{ID_CLASS}"
+ENV{ID_PATH}=="?*", KERNEL=="event*", SYMLINK+="input/by-path/$env{ID_PATH}-event-$env{ID_CLASS}"
+
+LABEL="persistent_input_end"
+