diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-02-15 20:54:53 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-02-15 20:54:53 +0100 |
commit | 348f9dfa0461a9e3d93c360de59f4959b0c97fd4 (patch) | |
tree | cced179189001350f40b61dcff68e0714992def2 /etc/udev/suse/60-persistent-input.rules | |
parent | 656ba91ee111308b53938b0f518ccbfadada9aa0 (diff) |
update SUSE rules
Diffstat (limited to 'etc/udev/suse/60-persistent-input.rules')
-rw-r--r-- | etc/udev/suse/60-persistent-input.rules | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/udev/suse/60-persistent-input.rules b/etc/udev/suse/60-persistent-input.rules new file mode 100644 index 0000000000..2a74d15482 --- /dev/null +++ b/etc/udev/suse/60-persistent-input.rules @@ -0,0 +1,20 @@ +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}="/sbin/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" + +# by-id links +KERNEL=="mouse*", ENV{ID_BUS}=="?*", ENV{ID_SERIAL}=="?*", ENV{ID_CLASS}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-$env{ID_CLASS}" +KERNEL=="event*", ENV{ID_BUS}=="?*", ENV{ID_SERIAL}=="?*", ENV{ID_CLASS}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-event-$env{ID_CLASS}" + +# by-path +IMPORT{program}="/sbin/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}-$env{ID_CLASS}" + +LABEL="persistent_input_end" + |