You are not logged in.

#1 2008-03-02 05:01:34

srimalik
Member
Registered: 2007-09-16
Posts: 65

[Solved]Touchpad problems with T60

The three buttons above my touch pad stopped working some time back(I think After an xorg upgrade) .
I thought it be a issue with new xorg and waited for next xorg update and found that the problem is still there after multiple upgrades,  it never worked. And I am using the buttons below the touch pad.
Today I found that the joystick also is not working.

Is anybody else facing this probelm?

Can somebdy who is not seeing this issue please post your xorg.xonf , I will try that on my T60?

Including sections from my xorg.conf


Section "ServerLayout"

# PS/2 Mouse not detected
# Serial Mouse not detected
        Identifier     "Xorg Configured"
        Screen      0  "aticonfig-Screen[0]" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        #InputDevice     "Synaptics Touchpad"  "SendCoreEvents"
        #InputDevice    "Mouse[1]"  "CorePointer"
        InputDevice    "USB Mouse" "AlwaysCore"
        InputDevice     "Synaptics Touchpad"  "SendCoreEvents"
        Option "AIGLX" "true"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
        Load  "bitmap" # bitmap-fonts
        Load  "type1"
        Load  "freetype"
        Load  "record"
        Load  "synaptics"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "CoreKeyboard"
        Option      "XkbRules" "xorg"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Serial Mouse"
        Driver      "mouse"
        Option      "Protocol" "Microsoft"
        Option      "Device" "/dev/ttyS0"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option      "SendCoreEvents" "true"
EndSection

Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "ZAxisMapping" "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option      "SendCoreEvents" "true"
EndSection

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

Section "InputDevice"
        Driver          "synaptics"
        Identifier      "Synaptics Touchpad"
        Option  "Device"        "/dev/psaux"
        Option  "Protocol"      "auto-dev"
        Option  "LeftEdge"      "1700"
        Option  "RightEdge"     "5300"
        Option  "TopEdge"       "1700"
        Option  "BottomEdge"    "4200"
        Option  "FingerLow"     "25"
        Option  "FingerHigh"    "30"
        Option  "MaxTapTime"    "180"
        Option  "MaxTapMove"    "220"
        Option  "VertScrollDelta" "100"
        Option  "MinSpeed"      "0.06"
        Option  "MaxSpeed"      "0.12"
        Option  "AccelFactor" "0.0010"
        Option  "SHMConfig"     "on"
        #  Option       "Repeater"      "/dev/ps2mouse"
        Option "SHMConfig" "on"
EndSection

Last edited by srimalik (2008-03-04 04:33:53)

Offline

#2 2008-03-02 18:44:50

mcmillan
Member
Registered: 2006-04-06
Posts: 665

Re: [Solved]Touchpad problems with T60

The major xorg upgrade a while back changed some of the syntax. I have a T60 that's working fine now with

        InputDevice    "Touchpad" "CorePointer"
        InputDevice    "Mouse0"   "SendCoreEvents"
Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection
Section "InputDevice"
        Identifier  "Touchpad"
        Driver      "synaptics"
        Option      "Device" "/dev/input/mouse1"
        Option      "Protocol" "auto-dev"
        Option      "LeftEdge" "1700"
        Option      "RightEdge" "5300"
        Option      "TopEdge" "1700"
        Option      "BottomEdge" "4200"
        Option      "FingerLow" "25"
        Option      "FingerHigh" "30"
        Option      "MaxTapTime" "180"
        Option      "MaxTapMove" "220"
        Option      "VertScrollDelta" "100"
        Option      "MinSpeed" "0.06"
        Option      "MaxSpeed" "0.12"
        Option      "AccelFactor" "0.0010"
        Option      "SHMConfig" "on"
EndSection

I don't use a joystick, but this does work for an external mouse anyway

Offline

#3 2008-03-03 17:06:17

srimalik
Member
Registered: 2007-09-16
Posts: 65

Re: [Solved]Touchpad problems with T60

Thanks, mcmillan

That worked for me.

-Sri

Offline

Board footer

Powered by FluxBB