1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 15:21:37 +03:00
systemd/etc/udev/debian/persistent-input.rules

42 lines
1.5 KiB
Plaintext
Raw Normal View History

2006-03-29 14:19:21 +04:00
SUBSYSTEM!="input", GOTO="persistent_input_end"
ACTION!="add", GOTO="persistent_input_end"
# ignore the mid-level drivers
KERNEL=="input[0-9]*", GOTO="persistent_input_end"
# usb devices
2006-08-23 03:20:56 +04:00
SUBSYSTEMS=="usb", IMPORT{program}="usb_id -x"
SUBSYSTEMS=="usb", \
ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="01", \
2006-03-29 14:19:21 +04:00
ENV{ID_CLASS}="kbd"
2006-08-23 03:20:56 +04:00
SUBSYSTEMS=="usb", \
ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="02", \
2006-03-29 14:19:21 +04:00
ENV{ID_CLASS}="mouse"
2006-05-29 23:00:32 +04:00
# other devices
2006-08-23 03:20:56 +04:00
DRIVERS=="pcspkr", ENV{ID_CLASS}="spkr"
DRIVERS=="atkbd", ENV{ID_CLASS}="kbd"
DRIVERS=="psmouse", ENV{ID_CLASS}="mouse"
ATTRS{name}=="*dvb*|*DVB*|* IR *", ENV{ID_CLASS}="ir"
# this means (ABS_X || ABS_WHEEL || ABS_THROTTLE) && !BTN_TOUCH
ATTRS{modalias}=="input:*-*a[068],*|input:*-*a*,[68],*m*", \
ATTRS{modalias}!="input:*-*k*14A,*r*", \
ENV{ID_CLASS}="joystick"
2006-05-29 23:00:32 +04:00
ENV{ID_SERIAL}=="", ENV{ID_SERIAL}="noserial"
2006-03-29 14:19:21 +04:00
# by-id links, generic and for the event devices
2006-08-23 03:20:56 +04:00
KERNEL=="mouse*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", \
2006-03-29 14:19:21 +04:00
SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-$env{ID_CLASS}"
2006-08-23 03:20:56 +04:00
KERNEL=="event*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", \
2006-03-29 14:19:21 +04:00
SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-event-$env{ID_CLASS}"
# by-path links
IMPORT{program}="path_id %p"
KERNEL=="mouse*", ENV{ID_PATH}=="?*", \
SYMLINK+="input/by-path/$env{ID_PATH}-$env{ID_CLASS}"
KERNEL=="event*", ENV{ID_PATH}=="?*", \
SYMLINK+="input/by-path/$env{ID_PATH}-event-$env{ID_CLASS}"
LABEL="persistent_input_end"