mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 12:40:05 +01:00
If we don't handle a device, don't touch it. Especially joysticks that we don't handle and thus should not touch either. Related to !231 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
20 lines
774 B
Text
20 lines
774 B
Text
# Do not edit this file, it will be overwritten on update
|
|
#
|
|
# This file contains lookup rules for libinput model-specific quirks.
|
|
# IT IS NOT A STABLE API AND SUBJECT TO CHANGE AT ANY TIME
|
|
|
|
ACTION!="add|change", GOTO="libinput_fuzz_override_end"
|
|
KERNEL!="event*", GOTO="libinput_fuzz_override_end"
|
|
|
|
# libinput-fuzz-override must only be called once per device, otherwise
|
|
# we'll lose the fuzz information
|
|
ATTRS{capabilities/abs}!="0", \
|
|
ENV{ID_INPUT_TOUCHPAD}=="1", \
|
|
IMPORT{program}="@UDEV_TEST_PATH@libinput-fuzz-override %S%p", \
|
|
GOTO="libinput_fuzz_override_end"
|
|
ATTRS{capabilities/abs}!="0", \
|
|
ENV{ID_INPUT_TOUCHSCREEN}=="1", \
|
|
IMPORT{program}="@UDEV_TEST_PATH@libinput-fuzz-override %S%p", \
|
|
GOTO="libinput_fuzz_override_end"
|
|
|
|
LABEL="libinput_fuzz_override_end"
|