Imported Upstream version 1.15.1
[deb_xorg-server.git] / config / 10-quirks.conf
CommitLineData
a09e091a
JB
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://bugzilla.redhat.com/show_bug.cgi?id=612140
23# please make Evoluent VerticalMouse 3 work out of the box
24# Button mapping on this mouse is quirky
25Section "InputClass"
26 Identifier "Evoluent VerticalMouse 3"
27 MatchProduct "Evoluent VerticalMouse 3"
28 # Sets following configuration:
29 # top button: left
30 # middle button: middle
31 # bottom button: right
32 # wheel click: middle
33 # thumb button: 8 (back)
34 Option "ButtonMapping" "1 2 2 4 5 6 7 3 8"
35EndSection
36
37
38# https://bugs.freedesktop.org/show_bug.cgi?id=55867
39# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
40Section "InputClass"
41 Identifier "Tag trackballs as XI_TRACKBALL"
42 MatchProduct "trackball"
43 MatchDriver "evdev"
44 Option "TypeName" "TRACKBALL"
45EndSection
46
47# https://bugs.freedesktop.org/show_bug.cgi?id=62831
48# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
49Section "InputClass"
50 Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
51 MatchProduct "La-VIEW Technology Naos 5000 Mouse"
52 MatchDriver "evdev"
53 Option "TypeName" "MOUSE"
54EndSection