Talk:Patch to enable advanced trackpoint configuration

From ThinkWiki
Revision as of 11:29, 8 March 2005 by Cryptom (Talk | contribs) (USB mouse and Kernel 2.6.10 problem added)
Jump to: navigation, search

IMHO the driver should not emulate a mousewheel, this should be done by the Xserver. e.g. (for Xfree86)

Section "InputDevice"
        Identifier      "TouchPoint"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mouse1"
        Option          "Protocol"              "auto"
        Option          "Emulate3Buttons"       "1"
        Option          "EmulateWheel"          "on"
        Option          "EmulateWheelButton"    "2"
        Option          "XAxisMapping"          "6 7"
        Option          "YAxisMapping"          "4 5" 
EndSection

However, when I tried this I found the scrolling too jerky and missed the third mouse button. --Onion 00:27, 5 Feb 2005 (CET)


I've used the trackpoint as mentioned above with the following additional section for an USB mouse:

Section "InputDevice"
       Identifier      "USB Mouse"
       Driver          "mouse"
       Option          "SendCoreEvents"        "true"
       Option          "Device"                "/dev/input/mouse1"
       Option          "Protocol"              "ImPS/2"
       Option          "ZAxisMapping"          "4 5"
EndSection

However, I've used /dev/input/mouse0 for the trackpoint and /dev/input/mouse1 for the USB mouse.

As of Kernel 2.6.10, the middle USB mouse button (used for pasting) doesn't work anymore (same config as for Kernel 2.6.9, execpt for the newly included ibm-acpi support).

Anyone one else with the same problem or with a solution?

CrypTom 10:29, 8 Mar 2005 (CET)


Any word on 2.6.11 support? I've seen the treads about this being included in the main tree but I guess it didn't make it. Any sign of a patch?