You are not logged in.

#1 2010-06-20 23:54:33

egan
Member
From: Mountain View, CA
Registered: 2009-08-17
Posts: 273

Xorg 1.8 + Synaptics --- Erroneous Error Messages?

I upgraded to Xorg 1.8, and it seems to working fine. I do get some errors when I start though:
SynPS/2 Synaptics TouchPad no synaptics even device found
(EE) SynPS/2 Synaptics TouchPad: no supported touchpad found
(EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"

But my touchpad works fine. Anyone know why this is? Is there some further configuration that I need to do? I have already customized the settings a bit in /etc/X11/xorg.conf.d/10-synaptics.conf.

Last edited by egan (2010-06-21 16:27:34)

Offline

#2 2010-06-21 00:37:49

takedown
Member
From: Argentina
Registered: 2008-08-31
Posts: 219

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

same here...

Offline

#3 2010-06-21 00:40:58

Skripka
Member
From: 2X1280X1024
Registered: 2009-02-19
Posts: 555

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

Have y'all seen this, and the contents thereof?

http://bbs.archlinux.org/viewtopic.php?id=95321

There's LOTS of stuff on xorg1.8 and keyboards/touchpads over in the Testing Repo forum, at a cursory glance too.

Last edited by Skripka (2010-06-21 00:44:43)

Offline

#4 2010-06-21 00:58:02

egan
Member
From: Mountain View, CA
Registered: 2009-08-17
Posts: 273

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

Skripka wrote:

Have y'all seen this, and the contents thereof?

http://bbs.archlinux.org/viewtopic.php?id=95321

There's LOTS of stuff on xorg1.8 and keyboards/touchpads over in the Testing Repo forum, at a cursory glance too.

It doesn't seems applicable, since I have no problem with configuration. I just don't like seeing errors where there shouldn't be any.

Offline

#5 2010-06-21 10:38:34

Meyithi
Member
From: Wirral, UK
Registered: 2009-06-21
Posts: 550
Website

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

I have them too, I'm guessing it's nothing to worry about as everything is working fine including multi-touch.

xorg.conf here for reference.


The mind roams more freely in empty rooms.
dwm - colours - ncmpcpp - system
irc://irc.freenode.net:meyithi

Offline

#6 2010-06-21 12:33:47

archman-cro
Member
From: Croatia
Registered: 2010-04-04
Posts: 943
Website

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

I get it too. Well, the philosophy is: If it works, leave it! big_smile
But I'd like to know more about it, too. Don't want errors all around.

Last edited by archman-cro (2010-06-23 15:37:52)

Offline

#7 2010-06-21 13:10:21

Woofie
Member
From: RK, Czech Rep.
Registered: 2009-12-28
Posts: 83

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

Same error here but it seems to work correctly even twofinger scrolling..


Sorry for my english. It's not my native language..

Offline

#8 2010-06-21 16:26:37

egan
Member
From: Mountain View, CA
Registered: 2009-08-17
Posts: 273

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

From what I can tell, for most people these errors mean that their touchpad doesn't work at all. I guess we are lucky. But I still hope to find out why Xorg is complaining.

Offline

#9 2010-06-23 17:49:55

George.Harmony
Member
From: Off The Wire
Registered: 2010-04-30
Posts: 97

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

I had a similar error. It would find a touchpad at /dev/input/event6 and then again at /dev/input/mouse0.

From what I could figure out. Xorg was applying the synaptic driver to the first instance that was given to it from udev and then when the second instance is givin to it by udev under the mouse0 dev it wasn't there anymore.

My solution was to add this to my  /etc/X11/xorg.conf.d/10-evdev.conf

Section "InputClass"
   Identifier      "disabling synaptic second mouse found"
   MatchProduct    "SynPS/2 Synaptics TouchPad"
   MatchDevicePath "/dev/input/mouse0"
   Option          "Ignore" "on"
EndSection

now my Xorg.0.log looks like this

...
[ 15289.397] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[ 15289.397] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[ 15289.397] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[ 15289.398] (II) LoadModule: "synaptics"
[ 15289.398] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 15289.398] (II) Module synaptics: vendor="X.Org Foundation"
[ 15289.398]     compiled for 1.8.0.902, module version = 1.2.2
[ 15289.399]     Module class: X.Org XInput Driver
[ 15289.399]     ABI class: X.Org XInput driver, version 9.0
[ 15289.399] (II) Synaptics touchpad driver version 1.2.2
[ 15289.399] (**) Option "Device" "/dev/input/event6"
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: buttons: left right
[ 15289.411] (**) Option "SHMConfig" "on"
[ 15289.411] (**) Option "EmulateTwoFingerMinZ" "0"
[ 15289.411] (**) Option "VertEdgeScroll" "on"
[ 15289.411] (**) Option "VertTwoFingerScroll" "on"
[ 15289.411] (**) Option "HorizTwoFingerScroll" "on"
[ 15289.412] (**) Option "LTCornerButton" "3"
[ 15289.412] (**) Option "LBCornerButton" "2"
[ 15289.412] (**) Option "TapButton1" "1"
[ 15289.412] (**) Option "TapButton2" "2"
[ 15289.412] (**) Option "TapButton3" "3"
[ 15289.420] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 15289.420] (**) SynPS/2 Synaptics TouchPad: always reports core events
[ 15289.424] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[ 15289.432] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 15289.432] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[ 15289.432] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "disabling synaptic second mouse found"
...

Hope this helps.


Desktop:  Compiz Stand Alone w/ Cairo Dock.
Laptop:    Pekwm w/ Tint2
Jukebox:   MPD w/ cli
Gateway: Vuurmuur w/dialog

Offline

#10 2010-06-23 17:54:16

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

I'm seeing this same error and Xorg won't start with xinit or startx
It starts fine if I use any display manager (I actually only tried slim and gdm)


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#11 2010-06-23 22:48:30

jt512
Member
Registered: 2009-02-19
Posts: 262

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

George.Harmony wrote:

I had a similar error. It would find a touchpad at /dev/input/event6 and then again at /dev/input/mouse0.

From what I could figure out. Xorg was applying the synaptic driver to the first instance that was given to it from udev and then when the second instance is givin to it by udev under the mouse0 dev it wasn't there anymore.

My solution was to add this to my  /etc/X11/xorg.conf.d/10-evdev.conf

Section "InputClass"
   Identifier      "disabling synaptic second mouse found"
   MatchProduct    "SynPS/2 Synaptics TouchPad"
   MatchDevicePath "/dev/input/mouse0"
   Option          "Ignore" "on"
EndSection

now my Xorg.0.log looks like this

...
[ 15289.397] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[ 15289.397] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[ 15289.397] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[ 15289.398] (II) LoadModule: "synaptics"
[ 15289.398] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 15289.398] (II) Module synaptics: vendor="X.Org Foundation"
[ 15289.398]     compiled for 1.8.0.902, module version = 1.2.2
[ 15289.399]     Module class: X.Org XInput Driver
[ 15289.399]     ABI class: X.Org XInput driver, version 9.0
[ 15289.399] (II) Synaptics touchpad driver version 1.2.2
[ 15289.399] (**) Option "Device" "/dev/input/event6"
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
[ 15289.411] (II) SynPS/2 Synaptics TouchPad: buttons: left right
[ 15289.411] (**) Option "SHMConfig" "on"
[ 15289.411] (**) Option "EmulateTwoFingerMinZ" "0"
[ 15289.411] (**) Option "VertEdgeScroll" "on"
[ 15289.411] (**) Option "VertTwoFingerScroll" "on"
[ 15289.411] (**) Option "HorizTwoFingerScroll" "on"
[ 15289.412] (**) Option "LTCornerButton" "3"
[ 15289.412] (**) Option "LBCornerButton" "2"
[ 15289.412] (**) Option "TapButton1" "1"
[ 15289.412] (**) Option "TapButton2" "2"
[ 15289.412] (**) Option "TapButton3" "3"
[ 15289.420] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 15289.420] (**) SynPS/2 Synaptics TouchPad: always reports core events
[ 15289.424] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[ 15289.424] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[ 15289.432] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 15289.432] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[ 15289.432] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "disabling synaptic second mouse found"
...

Hope this helps.

Holy crap!  It sure did help.  You nailed it.

Jay

Offline

#12 2010-06-23 23:52:14

egan
Member
From: Mountain View, CA
Registered: 2009-08-17
Posts: 273

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

@George.Harmony: Ah, nice detective work. Don't have time to check write now, but I will report back if the solution works. Weird problem in the first place. Maybe it should be reported as a bug.

Offline

#13 2010-06-24 10:58:45

kralyk
Member
Registered: 2009-04-27
Posts: 72

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

George.Harmony: Great! This worked for me,

Although on my laptop, its event10, mouse1 and ALPS.
My 10-evdev.conf looks like this:

...
Section "InputClass"
   Identifier      "disabling synaptic second mouse found"
   MatchProduct    "AlpsPS/2 ALPS GlidePoint"
   MatchDevicePath "/dev/input/mouse1"
   Option          "Ignore" "on"
EndSection
...

Offline

#14 2010-07-08 14:47:19

ap_
Member
From: Finland
Registered: 2008-10-14
Posts: 48

Re: Xorg 1.8 + Synaptics --- Erroneous Error Messages?

Thank you, thank you thank you!!

This topic really saved my sanity! Xorg added touchpad as a joystick, so it always threw the cursor at the center of the screen. I was using Xorg 1.7 for weeks because of this. I blacklisted /dev/input/event5 and all is perfect now!

PS. I hate Xorg

Last edited by ap_ (2010-07-08 14:47:59)

Offline

Board footer

Powered by FluxBB