
Originally Posted by
pasha_sdc
Hello,
...
The module for "synaptics" seems to get loaded during the boot of X on system startup but it tells me it cannot open the device (/dev/input/mice, /dev/input/event*, /dev/psaux).
to be honest i've completely ran out of ideas and was wondering if anyone could shed some light on my problem. I've read many of the other touchpad problem posts on here and my config file always seems to look the same as everyone elses.
I also have synaptics loaded and have set it to core pointer. At the moment i'm having to use a usb mouse. works fine in Knoppix but i'm afraid it's because it's using XFree86.
Here is the relevant part of my config file. I've tried changing SHMConfig to "1", "on" and finally "true" to see if that'll work but to no avail.
Section "InputDevice"
Driver "synaptics"
Identifier "Mouse0"
Option "Device" "/dev/input/event2"
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" "true"
#Option "Repeater" "/dev/input/mice"
EndSection
Thanks,
Pasha
Here is what works for me and what FC4 did by default (I tweaked the scroll etc):
(Relevant parts of xorg.conf):
Code:
# XFree86 4 configuration created by pyxf86config
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Here is the section on loading the synaptic driver:
Code:
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
Load "synaptics"
EndSection
Finally the actual section:
Code:
Section "InputDevice"
Identifier "Mouse1"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5400"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
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
Notice /dev/psaux
Hope this helps. Let me what you get when you use the above.
Partha