xref: /OK3568_Linux_fs/external/xserver/config/10-quirks.conf (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# Collection of quirks and blacklist/whitelists for specific devices.
2
3
4# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
5# http://bugs.freedesktop.org/show_bug.cgi?id=22442
6Section "InputClass"
7        Identifier "ThinkPad HDAPS accelerometer blacklist"
8        MatchProduct "ThinkPad HDAPS accelerometer data"
9        Option "Ignore" "on"
10EndSection
11
12# https://bugzilla.redhat.com/show_bug.cgi?id=523914
13# Mouse does not move in PV Xen guest
14# Explicitly tell evdev to not ignore the absolute axes.
15Section "InputClass"
16        Identifier "Xen Virtual Pointer axis blacklist"
17        MatchProduct "Xen Virtual Pointer"
18        Option "IgnoreAbsoluteAxes" "off"
19        Option "IgnoreRelativeAxes" "off"
20EndSection
21
22# https://bugs.freedesktop.org/show_bug.cgi?id=55867
23# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
24Section "InputClass"
25        Identifier "Tag trackballs as XI_TRACKBALL"
26        MatchProduct "trackball"
27        MatchDriver "evdev"
28        Option "TypeName" "TRACKBALL"
29EndSection
30
31# https://bugs.freedesktop.org/show_bug.cgi?id=62831
32# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
33Section "InputClass"
34        Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
35        MatchProduct "La-VIEW Technology Naos 5000 Mouse"
36        MatchDriver "evdev"
37        Option "TypeName" "MOUSE"
38EndSection
39