~brandontschaefer/+junk/break-x

« back to all changes in this revision

Viewing changes to config/10-quirks.conf

  • Committer: Brandon Schaefer
  • Date: 2014-09-30 19:38:40 UTC
  • Revision ID: brandon.schaefer@canonical.com-20140930193840-a65z6qk8ze02cgsb
* Init commit to back this up

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 
 
6
Section "InputClass"
 
7
        Identifier "ThinkPad HDAPS accelerometer blacklist"
 
8
        MatchProduct "ThinkPad HDAPS accelerometer data"
 
9
        Option "Ignore" "on"
 
10
EndSection
 
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.
 
15
Section "InputClass"
 
16
        Identifier "Xen Virtual Pointer axis blacklist"
 
17
        MatchProduct "Xen Virtual Pointer"
 
18
        Option "IgnoreAbsoluteAxes" "off"
 
19
        Option "IgnoreRelativeAxes" "off"
 
20
EndSection
 
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
 
25
Section "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"
 
35
EndSection
 
36
 
 
37
 
 
38
# https://bugs.freedesktop.org/show_bug.cgi?id=55867
 
39
# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
 
40
Section "InputClass"
 
41
        Identifier "Tag trackballs as XI_TRACKBALL"
 
42
        MatchProduct "trackball"
 
43
        MatchDriver "evdev"
 
44
        Option "TypeName" "TRACKBALL"
 
45
EndSection
 
46
 
 
47
# https://bugs.freedesktop.org/show_bug.cgi?id=62831
 
48
# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
 
49
Section "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"
 
54
EndSection