LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   synaptics touch pad with Xorg on Debian (https://www.linuxquestions.org/questions/linux-hardware-18/synaptics-touch-pad-with-xorg-on-debian-373244/)

seaking 10-15-2005 03:51 AM

synaptics touch pad with Xorg on Debian
 
ok...
i have a tecra m2 (Toshiba)
and it has a synaptics touch pad.
the touch pad is working only for moving but no scrolling or tapping.
i followd the xorg wiki about configuring it in ubentu but alas :) its not woking
i' cant tap on it or use the scrolling
my moduls looks like this:
Code:

ide-cd
ide-detect
ide-disk
psmouse
ipw2100
synaptics
#evdev
#usbhid

and my /proc/bus/input/devices like this :


Code:

I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
H: Handlers=kbd event0
B: EV=120013
B: KEY=4 2000000 3802078 f840d001 f2ffffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7

I: Bus=0011 Vendor=0002 Product=0008 Version=0000
N: Name="AlpsPS/2 ALPS TouchPad"
P: Phys=isa0060/serio1/input0
H: Handlers=event1 mouse0 ts0
B: EV=f
B: KEY=420 30000 670000 0 0 0 0 0 0 0 0
B: REL=3
B: ABS=1000003

I: Bus=0010 Vendor=001f Product=0001 Version=0100
N: Name="PC Speaker"
P: Phys=isa0061/input0
H: Handlers=kbd event2
B: EV=40001
B: SND=6

I: Bus=0003 Vendor=045e Product=007d Version=0200
N: Name="Microsoft Microsoft Notebook/Mobile Optical Mouse 2.0"
P: Phys=usb-0000:00:1d.1-2/input0
H: Handlers=event3 mouse1 ts1
B: EV=17
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=103
B: MSC=10

my xorg.conf like this:
Code:

Section "Files"
        FontPath        "unix/:7100"                        # local font server
        # if the local font server has problems, we can fall back on these
        FontPath        "/usr/lib/X11/fonts/misc"
        FontPath        "/usr/lib/X11/fonts/cyrillic"
        FontPath        "/usr/lib/X11/fonts/100dpi/:unscaled"
        FontPath        "/usr/lib/X11/fonts/75dpi/:unscaled"
        FontPath        "/usr/lib/X11/fonts/Type1"
        FontPath        "/usr/lib/X11/fonts/CID"
        FontPath        "/usr/lib/X11/fonts/100dpi"
        FontPath        "/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
        Load        "bitmap"
        Load        "dbe"
        Load        "ddc"
        Load        "extmod"
        Load        "freetype"
        Load        "glx"
        Load        "int10"
        Load        "record"
        Load        "type1"
        Load        "vbe"
        Load        "synaptics"

EndSection

Section "InputDevice"
        Identifier        "Generic Keyboard"
        Driver                "keyboard"
        Option                "CoreKeyboard"
        Option                "XkbRules"        "xorg"
        Option                "XkbModel"        "pc104"
        Option                "XkbLayout"        "us,il"
        Option                "XkbVariant"        "il"
        Option                "XkbOptions"        "grp:alt_shift_toggle"
EndSection

Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "mouse"
        Option                "CorePointer"
        Option                "Device"                "/dev/input/mice"
        Option                "Protocol"                "ImPS/2"
        Option                "Emulate3Buttons"        "true"
        Option                "ZAxisMapping"                "4 5"
EndSection

Section "InputDevice"
        Identifier        "Touchpad"
        Driver                "synaptics"
        Option                "SendCoreEvents"        "true"
        Option                "Device"                "/dev/mouse0"
        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.28"
        Option        "MaxSpeed"        "0.38"
        Option        "AccelFactor"        "0.0015"
        Option        "SHMConfig"        "on"
        Option                "HorizScrollDelta"        "100"
EndSection

Section "Device"
        Identifier        "Nvidia"
        Driver                "nvidia"
        VideoRam        32000
        Option                "UseFBDev"                "true"
EndSection

Section "Monitor"
        Identifier        "Generic Monitor"
        Option                "DPMS"
        HorizSync        28-51
        VertRefresh        43-60
EndSection

Section "Screen"
        Identifier        "Default Screen"
        Device                "Nvidia"
        Monitor                "Generic Monitor"
        DefaultDepth        24
        SubSection "Display"
                Depth                1
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                4
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                8
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                15
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                16
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                24
                Modes                "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier        "Default Layout"
        Screen                "Default Screen"
        InputDevice        "Generic Keyboard"
        InputDevice        "Configured Mouse"
        InputDevice        "TouchPad" "AlwaysCore"
#        InputDevice        "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode        0666
EndSection


can any one please tell me whats wrong?
thanx
seaking


All times are GMT -5. The time now is 05:20 AM.