Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 311425 - [x11 overlay] x11-base/xorg-server: configuration snipets for udev support
Summary: [x11 overlay] x11-base/xorg-server: configuration snipets for udev support
Status: RESOLVED DUPLICATE of bug 305371
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo X packagers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-26 11:24 UTC by Manuel Nickschas
Modified: 2010-04-07 21:24 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Manuel Nickschas 2010-03-26 11:24:48 UTC
Using X11 with the new udev support requires some settings in xorg.conf to tell X11 which driver to load for input devices. Often, it is recommended to put the following in xorg.conf:

Section "InputClass"
        Identifier "default"
        Driver "evdev"
EndSection

However, this will fail on Thinkpads which have a HDAPS sensor, as X11 will happily configure those as input devices, screwing up mouse pointer handling. You therefore need to explicitly disable them in this case:

Section "InputClass"
        Identifier      "disable HDAPS"
        MatchProduct    "HDAPS"
        Option          "Ignore" "on"
EndSection

This will make xorg-server >= 1.8 work correctly on thusly equipped Thinkpads.

As an additional hint, you can still enable wheel emulation for the trackpoint:

Section "InputClass"
        Identifier      "Wheel Emulation"
        MatchIsPointer  "on"
        MatchProduct    "TrackPoint"
        Option          "EmulateWheelButton" "2"
        Option          "EmulateWheel" "on"
EndSection

Having this by default might make users happy who often don't even know about this functionality, or still have it configured via HAL fdi files.

Reproducible: Always
Comment 1 Tomáš Chvátal (RETIRED) gentoo-dev 2010-04-07 21:24:37 UTC

*** This bug has been marked as a duplicate of bug 305371 ***