2017-06-26 10:17:36 +00:00
|
|
|
# This file is part of systemd.
|
|
|
|
#
|
|
|
|
# Database for joystick device information that cannot be queried directly.
|
|
|
|
#
|
|
|
|
# The lookup keys are composed in:
|
|
|
|
# 70-joystick.rules
|
|
|
|
#
|
|
|
|
# Match string format:
|
|
|
|
# joystick:<bustype>:v<vid>p<pid>:name:<name>:
|
|
|
|
#
|
|
|
|
# vid/pid as 4-digit hex lowercase vendor/product
|
|
|
|
#
|
|
|
|
# To add local entries, create a new file
|
|
|
|
# /etc/udev/hwdb.d/71-joystick-local.hwdb
|
|
|
|
# and add your rules there. To load the new rules execute (as root):
|
|
|
|
# systemd-hwdb update
|
|
|
|
# udevadm trigger /dev/input/eventXX
|
|
|
|
# where /dev/input/eventXX is the joystick in question. If in
|
|
|
|
# doubt, simply use /dev/input/event* to reload all input rules.
|
|
|
|
#
|
|
|
|
# If your changes are generally applicable, preferably send them as a pull
|
|
|
|
# request to
|
|
|
|
# https://github.com/systemd/systemd
|
|
|
|
# or create a bug report on https://github.com/systemd/systemd/issues and
|
|
|
|
# include your new rules, a description of the device, and the output of
|
|
|
|
# udevadm info /dev/input/eventXX.
|
|
|
|
#
|
|
|
|
# Permitted keys:
|
|
|
|
# Specify if a joystick is a built-in one or external:
|
|
|
|
# ID_INPUT_JOYSTICK_INTEGRATION=internal|external
|
|
|
|
#
|
|
|
|
# If the property is missing, user-space can assume:
|
|
|
|
# ID_INPUT_JOYSTICK_INTEGRATION=external
|
|
|
|
|
|
|
|
joystick:bluetooth:*
|
|
|
|
ID_INPUT_JOYSTICK_INTEGRATION=external
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
# GPD
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
# GPD Win, Classic and XBox 360 compat modes
|
Partially revert "hwdb: add trailing ":*" everywhere"
This reverts commit c0443b97b71d5f70a0622061f589307bec5502c6.
I got various cases wrong:
"usb:v04F3p2B7Cd5912dc00dsc00dp00ic03isc00ip00in00"
"usb:v0627p0001:QEMU USB Tablet"
"input:b0003v0627p0001e0001-e0,1,2,4,k110,111,112,r0,1,8,B,am4,lsfw"
OTOH:
-evdev:name:ETPS/2 Elantech Touchpad:dmi:*svnASUSTeKComputerInc.:pnN53SV:*
+evdev:name:ETPS/2 Elantech Touchpad:dmi:*svnASUSTeKComputerInc.:pnN53SV*
is OK. Other parts follow after 'pn'.
-mouse:*:name:*Trackball*:*
-mouse:*:name:*trackball*:*
-mouse:*:name:*TrackBall*:*
+mouse:*:name:*Trackball*:
+mouse:*:name:*trackball*:
+mouse:*:name:*TrackBall*:
... and anything else with :name should be OK too, because our imports always
include ":" at the end:
IMPORT{builtin}="hwdb 'joystick:$env{ID_BUS}:v$attr{id/vendor}p$attr{id/product}:name:$attr{name}:'"
Including '*' at the end makes the pattern work even if we decide to add
something to the match string later.
Fixes #17499.
2020-11-03 13:17:53 +00:00
|
|
|
joystick:usb:v11c5p5507*
|
|
|
|
joystick:usb:v045ep028e*
|
2017-06-26 10:17:36 +00:00
|
|
|
ID_INPUT_JOYSTICK_INTEGRATION=internal
|