mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-28 16:40:07 +01:00
Some devices need specific configuration or different defaults. Push that into udev rules and a hwdb file, that's where detection is the easiest. The LIBINPUT_MODEL_ prefix is used to determine some type of device model. Note that this property is a private API and subject to change at any time without notice. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Tested-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
15 lines
439 B
Makefile
15 lines
439 B
Makefile
udevdir=$(UDEV_DIR)
|
|
udev_PROGRAMS = libinput-device-group
|
|
|
|
libinput_device_group_SOURCES = libinput-device-group.c
|
|
libinput_device_group_CFLAGS = $(LIBUDEV_CFLAGS) $(GCC_CFLAGS)
|
|
libinput_device_group_LDADD = $(LIBUDEV_LIBS)
|
|
|
|
udev_rulesdir=$(UDEV_DIR)/rules.d
|
|
dist_udev_rules_DATA = \
|
|
80-libinput-device-groups.rules \
|
|
90-libinput-model-quirks.rules
|
|
|
|
udev_hwdbdir=$(UDEV_DIR)/hwdb.d
|
|
dist_udev_hwdb_DATA = \
|
|
90-libinput-model-quirks.hwdb
|