View previous topic :: View next topic |
Author |
Message |
optilude Apprentice
Joined: 29 May 2002 Posts: 248 Location: England
|
Posted: Sun Oct 12, 2003 12:22 am Post subject: Inverted synaptics touchpad |
|
|
Got the synaptics drivers from the stock 2.6.0-test7 kernel and the X driver from the 4.3.0-r3 ebuild and configured X according to the HOWTO thread in another forum. It works, but up is down and down is up! That is, if I slide my finger up on the pad, the cursor moves down. The same is true for the scrolling (which otherwise works). Left/right are unaffected. What's wrong?
Martin _________________ --
"Life is both a major and a minor key" -- Travis |
|
Back to top |
|
|
chaplin n00b
Joined: 14 Oct 2003 Posts: 2
|
Posted: Tue Oct 14, 2003 9:16 pm Post subject: Same Problem |
|
|
I'm having the same problem on my Gericom Webgine Notebook. The Synaptics Touchpad ist succesfully detected when system boots. Running X with the driver, that's installed with the ebuild 4.3.0-r3 leads to the mouse being inverted on the vertical axis. |
|
Back to top |
|
|
chaplin n00b
Joined: 14 Oct 2003 Posts: 2
|
Posted: Tue Oct 14, 2003 10:08 pm Post subject: Solved! |
|
|
I've got it running! All I did is download the newest version of the synaptics driver for X. it's version 11.8.
Its available at http://w1.894.telia.com/~u89404340/touchpad/index.html#Download.
I edited XF86Config according to the explanations from the included INSTALL file.
The relevant sections:
Code: | Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "touchpad" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection |
Code: | Section "InputDevice"
Identifier "touchpad"
Driver "synaptics"
Option "Protocol" "event"
Option "Device" "/dev/input/event1"
Option "LeftEdge" "1900"
Option "RightEdge" "5400"
Option "TopEdge" "4000"
Option "BottomEdge" "1900"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.02"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.0010"
Option "SHMConfig" "on"
# Option "Repeater" "/dev/ps2mouse"
EndSection
|
|
|
Back to top |
|
|
|