You are not logged in.

#1 2011-03-17 02:20:23

userlander
Member
Registered: 2008-08-23
Posts: 413

Xorg can't find synaptics after last update

# cat /var/log/Xorg.0.log | grep -i ee

[ 13994.859] (EE) Query no Synaptics: 6003C8
[ 13994.859] (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware.
[ 13994.878] (EE) PreInit returned NULL for "Synaptics Touchpad"

# synclient
Couldn't find synaptics properties. No synaptics driver loaded?
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Protocol" "auto-dev"
Option "Device" "/dev/psaux"
#
#
Option      "VertEdgeScroll"    "true"  # enable vertical scroll zone
Option      "HorizEdgeScroll"   "true"  # enable horizontal scroll zone

Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"

Option "MinSpeed" "0.08"
Option "MaxSpeed" "0.25"
Option "AccelFactor" "0.09"
#
#Option "MinSpeed" "0.05"
#Option "MaxSpeed" "0.16"
#Option "AccelFactor" "0.0018"

Option "TopEdge" "1700"
Option "BottomEdge" "5200"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"

Option "FingerLow" "25"
Option "FingerHigh" "45"
Option "ZAxisMapping" "4 5"
Option "MaxTapTime" "200" # doubleclick speed, lower is harder
Option "MaxTapMove" "140"
Option "VertScrollDelta" "100"
Option "HorizEdgeScroll" "true"
Option "HorizTwoFingerScroll" "true"
Option "HorizScrollDelta" "100"
Option "RTCornerButton"   "0"
Option "SHMConfig" "true"

Last edited by userlander (2011-03-17 02:22:32)

Offline

#2 2011-03-17 10:56:57

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Xorg can't find synaptics after last update

You need an InputClass section, not InputDevice. The xf86-input-synaptics package has installed an xorg.conf.d/10-synaptics.conf file, just modify that to your liking and remove the InputDevice section.

Offline

#3 2011-03-18 22:25:41

caminoix
Member
From: cracow, poland
Registered: 2005-07-12
Posts: 162
Website

Re: Xorg can't find synaptics after last update

[edit]
FIXED: It turns out, I needed to get rid of /etc/X11/xorg.conf entirely. Merely commenting all touchpad-related settings in it is not enough. Just completely remove the file – or rename it, if you're not convinced – and all udev settings work like a charm.
[/edit]

I had the same problem and switching to InputClass did get my touchpad recognized and usable at a basic level but I still can't force my custom settings (scrolling, acceleration &c.). Synclient returns the same error as userlander's although the synaptics module is loaded from xorg.conf and I manually loaded the synaptics_i2c module.

I tried moving my custom options from /etc/X11/xorg.conf.d/10-synaptic.conf to /etc/udev/rules.d/touchpad.rules but I didn't notice any difference.

Last edited by caminoix (2011-03-19 10:31:54)

Offline

#4 2011-03-19 10:38:09

fax8
Member
From: Italy
Registered: 2006-03-14
Posts: 104
Website

Re: Xorg can't find synaptics after last update

I fixed this by removing the xorg.conf and using the following 10-synaptics.conf

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        #Option  "Device"        "/dev/input/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.20"             
        Option  "MaxSpeed"      "1.00"             
        Option  "AccelFactor" "0.00900"             
        Option  "SHMConfig"     "1"               
        Option  "VertTwoFingerScroll"   "1"        
        Option  "HorizTwoFingerScroll"  "1"        
        Option  "VertEdgeScroll"        "1"
        Option  "HorizEdgeScroll"       "1"
        Option  "TapButton1"            "1"
        Option  "TapButton2"            "2"
        Option  "TapButton3"            "3"
EndSection

So basically I replaced
Option  "Device"        "/dev/input/mouse0"
with
MatchDevicePath "/dev/input/event*"

(I found this in the 10-synaptics.conf.pacnew file that the package installed)

Offline

#5 2011-03-19 10:42:11

fax8
Member
From: Italy
Registered: 2006-03-14
Posts: 104
Website

Re: Xorg can't find synaptics after last update

Actually, it seems that removing xorg.conf is actually not needed so I kept it.

Offline

#6 2011-03-19 12:51:21

Awebb
Member
Registered: 2010-05-06
Posts: 6,272

Re: Xorg can't find synaptics after last update

It doesn't matter whether you use an xorg.conf or single files in xorg.conf.d/, just make sure you know which one has the priority over the others. You can also make a mix. Static stuff in xorg.conf, things you want to change in a script or GUI tool in xorg.conf.d/. I prefer the subfolder method, it's easier to play around with settings without the risk of losing everything (for me™).

Offline

#7 2011-03-19 13:20:47

caminoix
Member
From: cracow, poland
Registered: 2005-07-12
Posts: 162
Website

Re: Xorg can't find synaptics after last update

Well, I'm not pretending to understand how the whole thing works but here's what happened to me:

1. Everything was set in xorg.conf and worked just fine.
2. An update came two days ago, I think.
3. The next time I used my laptop, the touchpad didn't work at all.
4. I added 10-synaptics.conf in /etc/X11/xorg.conf.d and restarted X.
5. Nothing happened.
6. I commented out all the touchpad-related settings in xorg.conf and restarted X.
7. I could move the cursor and click the buttons but none of my settings worked.
8. I added /etv/udev/rules.d/touchpad.rules and tried restarting with and without 10-synaptics.conf in place and but nothing changed.
9. I renamed xorg.conf and restarted X.
10. Everything works beautiful.

In short, my touchpad (ALPS in Dell Studio 17) only works iff I do not have /etc/X11/xorg.conf and have /etc/X11/xorg.conf.d/10-synaptics.conf (possibly /etc/udev/rules.d/touchpad.rules could be used instead; I haven't tested it without xorg.conf).

So, there exists at least one configuration in which it seems necessary to completely remove xorg.conf in order to get /etc/X11/xorg.conf.d to work. If someone else with a similar problem is reading this thread, you can always give it a try, and maybe it'll just work for you, too.

Offline

#8 2011-03-19 17:47:34

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Xorg can't find synaptics after last update

Holy eff, caminoix is right. I had all my settings (keyboard, mouse, touchpad) centrally in xorg.conf with no files in xorg.conf.d, and the touchpad wasn't working correctly after upgrading to xorg-server-1.0/xf86-input-synaptics-1.4.0. In particular, two-finger tap didn't work. Then I moved the touchpad stuff from xorg.conf into xorg.conf.d/10-synaptics.conf. And what do you know, two-finger tap works again.

Craziest quirk ever, I tell you yikes

Offline

#9 2011-03-22 20:31:24

userlander
Member
Registered: 2008-08-23
Posts: 413

Re: Xorg can't find synaptics after last update

Confirmed here, too. Removing/renaming xorg.conf seems to partially work. I still need to make some adjustments in the 10-synaptics.conf file, but synclient detects the touchpad driver now and seems to take settings, so I guess that solves it - who knew? Getting rid of xorg.conf - that's what I call an improvement! big_smile

Offline

#10 2011-03-25 03:10:22

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: Xorg can't find synaptics after last update

For my EeePC 901 it was a case of deleting everything from xorg.conf except Section "Files" which has links to my FontPaths...

Everything works as advertised again


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#11 2011-03-26 13:51:38

peter23
Member
Registered: 2011-03-25
Posts: 2

Re: Xorg can't find synaptics after last update

I tried to explain the same problem in https://bbs.archlinux.org/viewtopic.php?id=115698.
I have a Lenovo Thinkpad T61.

I tried commenting out various parts, moving stuff to xorg.conf.d, but nothing helped.

There are the following problems when changing the config files:
  • If I change the Server-Flags-Section in xorg.conf, the keyboard layout isn't recognized anymore

  • If there is no xorg.conf, X starts, but I can not use any mouse or keyboard

  • Even if the (EE)-Error doesn't occurs, synclient and syndaemon still don't work (... No synaptics driver loaded?)

  • If the settings in 10-synaptics.conf seems to have effect, Option "VertTwoFingerScroll" "on" doesn't work

  • ...

I think I need the ServerFlags- and the Files-Section in the xorg.conf.

  • Do I need the Module-Section?

  • Where to put all the Input-Device-Sections (in the 10-synaptics.conf)?

Offline

#12 2011-03-26 20:52:54

trusktr
Banned
From: .earth
Registered: 2010-02-18
Posts: 907
Website

Re: Xorg can't find synaptics after last update

I don't really get why Arch works perfectly on my desktop, but on my lil sis's hp touchsmart laptop it seems that everytime the laptop gets turned on there's a new problem as if the settings change by themselves. My lil sis know nothing about linux, let alone where to change settings. She just uses the internet for homework, and that's about it right now.

I turned it on today, and now the touchpad mouse track doesn't even work, out of the blue, for no reason. I don't know how to explain it. My desktop is amazing, and does exactly what i've designed it to do... The laptop morphs on it's own. I'm about to install Win7 on the laptop just to get rid of the hassle.

If anyone else has experienced this, let me know!


joe@trusktr.io - joe at true skater dot io.

Offline

#13 2011-03-26 20:56:36

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: Xorg can't find synaptics after last update

merging...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#14 2011-03-26 21:18:48

trusktr
Banned
From: .earth
Registered: 2010-02-18
Posts: 907
Website

Re: Xorg can't find synaptics after last update

Oh thanks jasonwryan smile


joe@trusktr.io - joe at true skater dot io.

Offline

#15 2011-03-29 20:03:19

brazzmonkey
Member
From: between keyboard and chair
Registered: 2006-03-16
Posts: 818

Re: Xorg can't find synaptics after last update

I'm fighting against this issue as well, and still haven't found a valid solution because I must have an xorg.conf.
I haven't been able to find a way to use both xorg.conf and 10-synaptics.conf file...


what goes up must come down

Offline

#16 2011-03-30 20:05:49

brazzmonkey
Member
From: between keyboard and chair
Registered: 2006-03-16
Posts: 818

Re: Xorg can't find synaptics after last update

I eventually achieved to get something working by trial & error using wiki, forums and patience. I had to modify xorg.conf, 10-synaptics.conf and 10-evdev.conf.
I post these files for records, in case they may be useful for some users.

xorg.conf

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
#    InputDevice    "Keyboard0" "CoreKeyboard"
#    InputDevice    "Mouse0" "CorePointer"
#    InputDevice    "SynapticsTouchpad" "SendCoreEvents"
EndSection

Section "Files"

#    RgbPath         "/usr/X11R6/lib/X11/rgb"
#    FontPath     "/usr/share/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
#    FontPath     "/usr/share/fonts/cyrillic"
#FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
#FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
#    FontPath     "/usr/share/fonts/Type1"
#    FontPath     "/usr/share/fonts/ttf/western"
#    FontPath     "/usr/share/fonts/ttf/decoratives"
    ModulePath      "/usr/lib/xorg/modules"
    FontPath        "/usr/share/fonts/misc:unscaled"
    FontPath        "/usr/share/fonts/misc"
    FontPath        "/usr/share/fonts/75dpi:unscaled"
    FontPath        "/usr/share/fonts/75dpi"
    FontPath        "/usr/share/fonts/100dpi:unscaled"
    FontPath        "/usr/share/fonts/100dpi"
#    FontPath        "/usr/share/fonts/truetype"
#    FontPath        "/usr/share/fonts/truetype/openoffice"
#    FontPath        "/usr/share/fonts/truetype/ttf-bitstream-vera"
#    FontPath        "/usr/share/fonts/latex-ttf-fonts"
#    FontPath        "/usr/share/fonts/defoma/CID"
#    FontPath        "/usr/share/fonts/defoma/TrueType"
EndSection

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

Section "ServerFlags"
#    Option         "AutoAddDevices" "False"
    Option         "AllowMouseOpenFail" "true"
    Option       "DontZap" "off"
EndSection

#Section "InputDevice"
    # generated from default
#    Identifier     "Mouse0"
#    Driver         "mouse"
#    Option         "Protocol" "auto"
#    Option         "Device" "/dev/psaux"
#    Option         "Emulate3Buttons" "no"
#    Option         "ZAxisMapping" "4 5"
#EndSection

Section "InputClass"
    Identifier          "Keyboard Defaults"
    MatchIsKeyboard     "yes"
    Option              "XkbOptions" "terminate:ctrl_alt_bksp"
    # generated from default
#    Driver         "keyboard"
#    Option         "CoreKeyboard"
    Option         "XkbRules" "xorg"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "fr"
    Option         "XkbVariant" "oss"
EndSection

#Section "InputDevice"
  #Option      "Device"            "/dev/input/mice"
#    Identifier     "SynapticsTouchpad"
#    Driver         "synaptics"
#    Option         "AlwaysCore" "true"  # send events to CorePointer
#    Option         "Device" "/dev/psaux"
#    Option         "Protocol" "auto-dev"
#    Option         "SHMConfig" "false" # configurable at runtime? security risk
#    Option         "LeftEdge" "1700"  # x coord left
#    Option         "RightEdge" "5300"  # x coord right
#    Option         "TopEdge" "1700"  # y coord top
#    Option         "BottomEdge" "4200"  # y coord bottom
#    Option         "FingerLow" "25"    # pressure below this level triggers release
#    Option         "FingerHigh" "30"    # pressure above this level triggers touch
#    Option         "MaxTapTime" "180"   # max time in ms for detecting tap
#    Option         "VertEdgeScroll" "true"  # enable vertical scroll zone
#    Option         "HorizEdgeScroll" "true"  # enable horizontal scroll zone
#    Option         "CornerCoasting" "true"  # enable continuous scroll with finger in corner
#    Option         "CoastingSpeed" "0.30"  # corner coasting speed
#    Option         "VertScrollDelta" "100"   # edge-to-edge scroll distance of the vertical scroll
#    Option         "HorizScrollDelta" "100"   # edge-to-edge scroll distance of the horizontal scroll
#    Option         "MinSpeed" "0.10"  # speed factor for low pointer movement
#    Option         "MaxSpeed" "1.00"  # maximum speed factor for fast pointer movement
#    Option         "AccelFactor" "0.15"    # acceleration factor for normal pointer movements
#    Option         "VertTwoFingerScroll" "true"   # vertical scroll anywhere with two fingers
#    Option         "HorizTwoFingerScroll" "true"   # horizontal scroll anywhere with two fingers
#    Option         "TapButton1" "1"
#    Option         "TapButton2" "2"
#    Option         "TapButton3" "3"
#EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    #HorizSync       30.0 - 110.0
    #VertRefresh     50.0 - 150.0
    Option         "DPMS"
    Option "NoUseBios"
    #Modeline "1680x1050@60" 154.20 1680 1712 2296 2328 1050 1071 1081 1103
    #Option "PreferredMode" "1680x1050"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Nologo" "true"
    Option         "OnDemandVBlankInterrupts" "false"
    Option       "AllowGLXWithComposite" "true"
    Option         "Coolbits" "1"
    Option         "AllowSHMPixmaps" "false"
    Option         "RenderAccel" "true"
    Option         "AddARGBGLXVisuals" "true"
    Option         "TripleBuffer" "false"
    Option         "BackingStore" "false"    
    Option         "DamageEvents" "false"    
#force Powermizer to a certain level at all times
# level 0x1 = highest
# level 0x2 = med
# level 0x3 = lowest
#    Option "RegistryDwords" "PowerMizerLevelAC=0x3"
#    Option  "RegistryDwords" "PowerMizerLevel=0x3"
#    Option "RegistryDwords" "PerfLevelSrc=0x2222"
    Option "RegistryDwords" "PowerMizerEnable=0x1; PerfLevelSrc=0x2222; PowerMizerDefault=0x3; PowerMizerDefaultAC=0x3"
    SubSection "Display"
    Viewport  0 0
    Depth     24
    Modes     "1680x1050"
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
##    Option        "RENDER" "Enable"
##   Option        "DAMAGE" "Enable"
EndSection

10-synaptics.conf

Section "InputClass"
    Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        #Option  "Device"        "/dev/input/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.20"             
        Option  "MaxSpeed"      "1.00"             
        Option  "AccelFactor" "0.15"             
        Option  "SHMConfig"     "1"               
        Option  "VertTwoFingerScroll"   "1"        
        Option  "HorizTwoFingerScroll"  "1"  
        Option  "VertEdgeScroll"        "1"
        Option  "HorizEdgeScroll"       "1"
        Option  "TapButton1"            "1"
        Option  "TapButton2"            "2"
        Option  "TapButton3"            "3"
EndSection

10-evdev.conf

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

#Section "InputClass"
#        Identifier "evdev touchpad catchall"
#        MatchIsTouchpad "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

what goes up must come down

Offline

#17 2011-03-31 08:48:47

n0tiz
Member
Registered: 2011-01-24
Posts: 6
Website

Re: Xorg can't find synaptics after last update

Here is my solution:
https://bbs.archlinux.org/viewtopic.php?id=115899

I had +- the same problem...

Offline

#18 2011-10-27 10:32:18

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

Re: Xorg can't find synaptics after last update

I have similar problem

$ /usr/bin/synclient 
Couldn't find synaptics properties. No synaptics driver loaded?
$ pacman -Q xf86-input-synaptics
xf86-input-synaptics 1.5.0-1

Nothing with keyword "synaptics" was  mentioned in Xorg.0.log

[    25.987] 
This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.
[    25.987] 
X.Org X Server 1.11.1.901 (1.11.2 RC 1)
Release Date: 2011-10-14
[    25.987] X Protocol Version 11, Revision 0
[    25.987] Build Operating System: Linux 3.0-ARCH x86_64 
[    25.987] Current Operating System: Linux doctor 3.0-ARCH #1 SMP PREEMPT Wed Oct 19 10:27:51 CEST 2011 x86_64
[    25.987] Kernel command line: root=/dev/sda3 ro 5
[    25.987] Build Date: 24 October 2011  12:29:30PM
[    25.987]  
[    25.987] Current version of pixman: 0.22.2
[    25.987] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    25.987] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    25.987] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 27 13:26:35 2011
[    26.033] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    26.119] (==) No Layout section.  Using the first Screen section.
[    26.119] (**) |-->Screen "Screen0" (0)
[    26.119] (**) |   |-->Monitor "Monitor0"
[    26.119] (**) |   |-->Device "Device0"
[    26.119] (==) Automatically adding devices
[    26.119] (==) Automatically enabling devices
[    26.159] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    26.159] 	Entry deleted from font path.
[    26.170] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    26.170] (==) ModulePath set to "/usr/lib/xorg/modules"
[    26.170] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    26.170] (II) Loader magic: 0x7ccae0
[    26.170] (II) Module ABI versions:
[    26.170] 	X.Org ANSI C Emulation: 0.4
[    26.170] 	X.Org Video Driver: 11.0
[    26.170] 	X.Org XInput driver : 13.0
[    26.170] 	X.Org Server Extension : 6.0
[    26.172] (--) PCI:*(0:0:2:0) 8086:2a42:17aa:3a02 rev 9, Mem @ 0xf4000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[    26.172] (--) PCI: (0:0:2:1) 8086:2a43:17aa:3a02 rev 9, Mem @ 0xf4400000/1048576
[    26.172] (II) Open ACPI successful (/var/run/acpid.socket)
[    26.172] (II) LoadModule: "extmod"
[    26.184] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    26.191] (II) Module extmod: vendor="X.Org Foundation"
[    26.191] 	compiled for 1.11.1.901, module version = 1.0.0
[    26.191] 	Module class: X.Org Server Extension
[    26.191] 	ABI class: X.Org Server Extension, version 6.0
[    26.191] (II) Loading extension MIT-SCREEN-SAVER
[    26.191] (II) Loading extension XFree86-VidModeExtension
[    26.191] (II) Loading extension XFree86-DGA
[    26.191] (II) Loading extension DPMS
[    26.191] (II) Loading extension XVideo
[    26.191] (II) Loading extension XVideo-MotionCompensation
[    26.191] (II) Loading extension X-Resource
[    26.191] (II) LoadModule: "dbe"
[    26.191] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    26.219] (II) Module dbe: vendor="X.Org Foundation"
[    26.219] 	compiled for 1.11.1.901, module version = 1.0.0
[    26.219] 	Module class: X.Org Server Extension
[    26.219] 	ABI class: X.Org Server Extension, version 6.0
[    26.219] (II) Loading extension DOUBLE-BUFFER
[    26.219] (II) LoadModule: "glx"
[    26.219] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    26.255] (II) Module glx: vendor="X.Org Foundation"
[    26.255] 	compiled for 1.11.1.901, module version = 1.0.0
[    26.255] 	ABI class: X.Org Server Extension, version 6.0
[    26.255] (==) AIGLX enabled
[    26.255] (II) Loading extension GLX
[    26.274] (II) LoadModule: "record"
[    26.274] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    26.322] (II) Module record: vendor="X.Org Foundation"
[    26.322] 	compiled for 1.11.1.901, module version = 1.13.0
[    26.322] 	Module class: X.Org Server Extension
[    26.322] 	ABI class: X.Org Server Extension, version 6.0
[    26.322] (II) Loading extension RECORD
[    26.322] (II) LoadModule: "dri"
[    26.322] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    26.390] (II) Module dri: vendor="X.Org Foundation"
[    26.390] 	compiled for 1.11.1.901, module version = 1.0.0
[    26.390] 	ABI class: X.Org Server Extension, version 6.0
[    26.390] (II) Loading extension XFree86-DRI
[    26.390] (II) LoadModule: "dri2"
[    26.390] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    26.409] (II) Module dri2: vendor="X.Org Foundation"
[    26.409] 	compiled for 1.11.1.901, module version = 1.2.0
[    26.409] 	ABI class: X.Org Server Extension, version 6.0
[    26.409] (II) Loading extension DRI2
[    26.409] (II) LoadModule: "intel"
[    26.483] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    26.507] (II) Module intel: vendor="X.Org Foundation"
[    26.507] 	compiled for 1.10.99.902, module version = 2.16.0
[    26.507] 	Module class: X.Org Video Driver
[    26.507] 	ABI class: X.Org Video Driver, version 11.0
[    26.507] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
[    26.508] (++) using VT number 7

[    26.512] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    26.513] drmOpenDevice: node name is /dev/dri/card0
[    26.513] drmOpenDevice: open result is 9, (OK)
[    26.513] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    26.513] drmOpenDevice: node name is /dev/dri/card0
[    26.513] drmOpenDevice: open result is 9, (OK)
[    26.513] drmOpenByBusid: drmOpenMinor returns 9
[    26.513] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    26.513] (**) intel(0): Depth 24, (--) framebuffer bpp 32
[    26.513] (==) intel(0): RGB weight 888
[    26.513] (==) intel(0): Default visual is TrueColor
[    26.513] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45
[    26.513] (--) intel(0): Chipset: "GM45"
[    26.513] (**) intel(0): Relaxed fencing enabled
[    26.513] (**) intel(0): Wait on SwapBuffers? enabled
[    26.513] (**) intel(0): Triple buffering? enabled
[    26.513] (**) intel(0): Framebuffer tiled
[    26.513] (**) intel(0): Pixmaps tiled
[    26.513] (**) intel(0): 3D buffers tiled
[    26.513] (**) intel(0): SwapBuffers wait enabled
[    26.513] (==) intel(0): video overlay key set to 0x101fe
[    26.541] (II) intel(0): Output LVDS1 using monitor section Monitor0
[    26.542] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[    26.560] (II) intel(0): Output VGA1 has no monitor section
[    26.579] (II) intel(0): Output HDMI1 has no monitor section
[    26.579] (II) intel(0): Output DP1 has no monitor section
[    26.580] (II) intel(0): Output DP2 has no monitor section
[    26.580] (II) intel(0): EDID for output LVDS1
[    26.580] (II) intel(0): Manufacturer: LGD  Model: 230  Serial#: 0
[    26.580] (II) intel(0): Year: 2009  Week: 0
[    26.580] (II) intel(0): EDID Version: 1.3
[    26.580] (II) intel(0): Digital Display Input
[    26.580] (II) intel(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    26.580] (II) intel(0): Gamma: 2.20
[    26.580] (II) intel(0): No DPMS capabilities specified
[    26.580] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    26.580] (II) intel(0): First detailed timing is preferred mode
[    26.581] (II) intel(0): redX: 0.622 redY: 0.365   greenX: 0.340 greenY: 0.607
[    26.581] (II) intel(0): blueX: 0.145 blueY: 0.100   whiteX: 0.313 whiteY: 0.329
[    26.581] (II) intel(0): Manufacturer's mask: 0
[    26.581] (II) intel(0): Supported detailed timing:
[    26.581] (II) intel(0): clock: 72.3 MHz   Image Size:  344 x 194 mm
[    26.581] (II) intel(0): h_active: 1366  h_sync: 1414  h_sync_end 1446 h_blank_end 1526 h_border: 0
[    26.581] (II) intel(0): v_active: 768  v_sync: 771  v_sync_end 776 v_blanking: 790 v_border: 0
[    26.581] (II) intel(0):  LG Display
[    26.581] (II) intel(0): Monitor name: LP156WH2-TLAA
[    26.581] (II) intel(0): EDID (in hex):
[    26.581] (II) intel(0): 	00ffffffffffff0030e4300200000000
[    26.581] (II) intel(0): 	00130103802213780a62259f5d579b25
[    26.581] (II) intel(0): 	19505400000001010101010101010101
[    26.581] (II) intel(0): 	0101010101013e1c56a0500016303020
[    26.581] (II) intel(0): 	350058c2100000190000000000000000
[    26.581] (II) intel(0): 	00000000000000000000000000fe004c
[    26.581] (II) intel(0): 	4720446973706c61790a2020000000fc
[    26.581] (II) intel(0): 	004c503135365748322d544c41410038
[    26.581] (II) intel(0): EDID vendor "LGD", prod id 560
[    26.581] (II) intel(0): Printing DDC gathered Modelines:
[    26.581] (II) intel(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz)
[    26.596] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[    26.596] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[    26.596] (II) intel(0): Printing probed modes for output LVDS1
[    26.596] (II) intel(0): Modeline "1366x768"x60.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz)
[    26.596] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    26.596] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    26.596] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    26.596] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    26.610] (II) intel(0): EDID for output VGA1
[    26.629] (II) intel(0): EDID for output HDMI1
[    26.629] (II) intel(0): EDID for output DP1
[    26.630] (II) intel(0): EDID for output DP2
[    26.630] (II) intel(0): Output LVDS1 connected
[    26.630] (II) intel(0): Output VGA1 disconnected
[    26.630] (II) intel(0): Output HDMI1 disconnected
[    26.630] (II) intel(0): Output DP1 disconnected
[    26.630] (II) intel(0): Output DP2 disconnected
[    26.630] (II) intel(0): Using exact sizes for initial modes
[    26.630] (II) intel(0): Output LVDS1 using initial mode 1366x768
[    26.630] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    26.630] (II) intel(0): Kernel page flipping support detected, enabling
[    26.630] (**) intel(0): Display dimensions: (340, 190) mm
[    26.630] (**) intel(0): DPI set to (102, 102)
[    26.630] (II) Loading sub module "fb"
[    26.630] (II) LoadModule: "fb"
[    26.631] (II) Loading /usr/lib/xorg/modules/libfb.so
[    26.645] (II) Module fb: vendor="X.Org Foundation"
[    26.645] 	compiled for 1.11.1.901, module version = 1.0.0
[    26.645] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    26.645] (II) Loading sub module "dri2"
[    26.645] (II) LoadModule: "dri2"
[    26.645] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    26.645] (II) Module dri2: vendor="X.Org Foundation"
[    26.645] 	compiled for 1.11.1.901, module version = 1.2.0
[    26.645] 	ABI class: X.Org Server Extension, version 6.0
[    26.645] (==) Depth 24 pixmap format is 32 bpp
[    26.645] (II) intel(0): [DRI2] Setup complete
[    26.645] (II) intel(0): [DRI2]   DRI driver: i965
[    26.645] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
[    26.680] (II) UXA(0): Driver registered support for the following operations:
[    26.680] (II)         solid
[    26.680] (II)         copy
[    26.680] (II)         composite (RENDER acceleration)
[    26.680] (II)         put_image
[    26.680] (II)         get_image
[    26.680] (==) intel(0): Backing store disabled
[    26.680] (==) intel(0): Silken mouse enabled
[    26.680] (II) intel(0): Initializing HW Cursor
[    26.703] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    26.705] (==) intel(0): DPMS enabled
[    26.705] (==) intel(0): Intel XvMC decoder enabled
[    26.705] (II) intel(0): Set up textured video
[    26.705] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[    26.705] (II) intel(0): direct rendering: DRI2 Enabled
[    26.705] (==) intel(0): hotplug detection: "enabled"
[    26.705] (--) RandR disabled
[    26.705] (II) Initializing built-in extension Generic Event Extension
[    26.705] (II) Initializing built-in extension SHAPE
[    26.705] (II) Initializing built-in extension MIT-SHM
[    26.705] (II) Initializing built-in extension XInputExtension
[    26.705] (II) Initializing built-in extension XTEST
[    26.705] (II) Initializing built-in extension BIG-REQUESTS
[    26.705] (II) Initializing built-in extension SYNC
[    26.705] (II) Initializing built-in extension XKEYBOARD
[    26.705] (II) Initializing built-in extension XC-MISC
[    26.705] (II) Initializing built-in extension SECURITY
[    26.705] (II) Initializing built-in extension XINERAMA
[    26.705] (II) Initializing built-in extension XFIXES
[    26.705] (II) Initializing built-in extension RENDER
[    26.705] (II) Initializing built-in extension RANDR
[    26.705] (II) Initializing built-in extension COMPOSITE
[    26.705] (II) Initializing built-in extension DAMAGE
[    27.110] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    27.110] (II) AIGLX: enabled GLX_INTEL_swap_event
[    27.110] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    27.110] (II) AIGLX: enabled GLX_SGI_make_current_read
[    27.110] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    27.110] (II) AIGLX: Loaded and initialized i965
[    27.110] (II) GLX: Initialized DRI2 GL provider for screen 0
[    27.110] (II) intel(0): Setting screen physical size to 361 x 203
[    27.645] (II) config/udev: Adding input device Power Button (/dev/input/event6)
[    27.645] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    27.645] (II) LoadModule: "evdev"
[    27.645] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.662] (II) Module evdev: vendor="X.Org Foundation"
[    27.662] 	compiled for 1.10.99.902, module version = 2.6.0
[    27.662] 	Module class: X.Org XInput Driver
[    27.662] 	ABI class: X.Org XInput driver, version 13.0
[    27.662] (II) Using input driver 'evdev' for 'Power Button'
[    27.662] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.662] (**) Power Button: always reports core events
[    27.662] (**) Power Button: Device: "/dev/input/event6"
[    27.662] (--) Power Button: Found keys
[    27.662] (II) Power Button: Configuring as keyboard
[    27.662] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
[    27.662] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    27.662] (**) Option "xkb_rules" "evdev"
[    27.662] (**) Option "xkb_model" "evdev"
[    27.662] (**) Option "xkb_layout" "us"
[    27.689] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[    27.689] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    27.689] (II) Using input driver 'evdev' for 'Video Bus'
[    27.689] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.689] (**) Video Bus: always reports core events
[    27.689] (**) Video Bus: Device: "/dev/input/event8"
[    27.689] (--) Video Bus: Found keys
[    27.689] (II) Video Bus: Configuring as keyboard
[    27.689] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input8/event8"
[    27.689] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    27.689] (**) Option "xkb_rules" "evdev"
[    27.689] (**) Option "xkb_model" "evdev"
[    27.689] (**) Option "xkb_layout" "us"
[    27.690] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    27.690] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    27.690] (II) Using input driver 'evdev' for 'Power Button'
[    27.690] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.690] (**) Power Button: always reports core events
[    27.690] (**) Power Button: Device: "/dev/input/event4"
[    27.690] (--) Power Button: Found keys
[    27.690] (II) Power Button: Configuring as keyboard
[    27.690] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
[    27.690] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    27.690] (**) Option "xkb_rules" "evdev"
[    27.690] (**) Option "xkb_model" "evdev"
[    27.690] (**) Option "xkb_layout" "us"
[    27.690] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
[    27.690] (II) No input driver/identifier specified (ignoring)
[    27.691] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
[    27.691] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    27.691] (II) Using input driver 'evdev' for 'Sleep Button'
[    27.691] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.691] (**) Sleep Button: always reports core events
[    27.691] (**) Sleep Button: Device: "/dev/input/event5"
[    27.691] (--) Sleep Button: Found keys
[    27.691] (II) Sleep Button: Configuring as keyboard
[    27.691] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
[    27.691] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    27.691] (**) Option "xkb_rules" "evdev"
[    27.691] (**) Option "xkb_model" "evdev"
[    27.691] (**) Option "xkb_layout" "us"
[    27.691] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
[    27.691] (II) No input driver/identifier specified (ignoring)
[    27.692] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event11)
[    27.692] (II) No input driver/identifier specified (ignoring)
[    27.692] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event12)
[    27.692] (II) No input driver/identifier specified (ignoring)
[    27.692] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event13)
[    27.692] (II) No input driver/identifier specified (ignoring)
[    27.693] (II) config/udev: Adding input device OM (/dev/input/event1)
[    27.693] (**) OM: Applying InputClass "evdev pointer catchall"
[    27.693] (II) Using input driver 'evdev' for 'OM'
[    27.693] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.693] (**) OM: always reports core events
[    27.693] (**) OM: Device: "/dev/input/event1"
[    27.693] (--) OM: Found 3 mouse buttons
[    27.693] (--) OM: Found scroll wheel(s)
[    27.693] (--) OM: Found relative axes
[    27.693] (--) OM: Found x and y relative axes
[    27.693] (II) OM: Configuring as mouse
[    27.693] (II) OM: Adding scrollwheel support
[    27.693] (**) OM: YAxisMapping: buttons 4 and 5
[    27.693] (**) OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    27.693] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/input/input1/event1"
[    27.693] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 10)
[    27.693] (II) OM: initialized for relative axes.
[    27.693] (**) OM: (accel) keeping acceleration scheme 1
[    27.693] (**) OM: (accel) acceleration profile 0
[    27.693] (**) OM: (accel) acceleration factor: 2.000
[    27.693] (**) OM: (accel) acceleration threshold: 4
[    27.694] (II) config/udev: Adding input device OM (/dev/input/mouse0)
[    27.694] (II) No input driver/identifier specified (ignoring)
[    27.694] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event9)
[    27.694] (**) Lenovo EasyCamera: Applying InputClass "evdev keyboard catchall"
[    27.694] (II) Using input driver 'evdev' for 'Lenovo EasyCamera'
[    27.694] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.694] (**) Lenovo EasyCamera: always reports core events
[    27.694] (**) Lenovo EasyCamera: Device: "/dev/input/event9"
[    27.694] (--) Lenovo EasyCamera: Found keys
[    27.694] (II) Lenovo EasyCamera: Configuring as keyboard
[    27.694] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-3/2-3:1.0/input/input9/event9"
[    27.694] (II) XINPUT: Adding extended input device "Lenovo EasyCamera" (type: KEYBOARD, id 11)
[    27.694] (**) Option "xkb_rules" "evdev"
[    27.694] (**) Option "xkb_model" "evdev"
[    27.694] (**) Option "xkb_layout" "us"
[    27.695] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    27.695] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    27.695] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    27.695] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.695] (**) AT Translated Set 2 keyboard: always reports core events
[    27.695] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    27.695] (--) AT Translated Set 2 keyboard: Found keys
[    27.695] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    27.695] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    27.695] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[    27.695] (**) Option "xkb_rules" "evdev"
[    27.695] (**) Option "xkb_model" "evdev"
[    27.695] (**) Option "xkb_layout" "us"
[    27.695] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event14)
[    27.695] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
[    27.695] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
[    27.695] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.695] (**) PS/2 Generic Mouse: always reports core events
[    27.696] (**) PS/2 Generic Mouse: Device: "/dev/input/event14"
[    27.696] (--) PS/2 Generic Mouse: Found 3 mouse buttons
[    27.696] (--) PS/2 Generic Mouse: Found relative axes
[    27.696] (--) PS/2 Generic Mouse: Found x and y relative axes
[    27.696] (II) PS/2 Generic Mouse: Configuring as mouse
[    27.696] (**) PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
[    27.696] (**) PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    27.696] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input14/event14"
[    27.696] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE, id 13)
[    27.696] (II) PS/2 Generic Mouse: initialized for relative axes.
[    27.696] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
[    27.696] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
[    27.696] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
[    27.696] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
[    27.696] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse1)
[    27.696] (II) No input driver/identifier specified (ignoring)
[    27.696] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event7)
[    27.696] (**) Ideapad extra buttons: Applying InputClass "evdev keyboard catchall"
[    27.696] (II) Using input driver 'evdev' for 'Ideapad extra buttons'
[    27.697] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    27.697] (**) Ideapad extra buttons: always reports core events
[    27.697] (**) Ideapad extra buttons: Device: "/dev/input/event7"
[    27.697] (--) Ideapad extra buttons: Found keys
[    27.697] (II) Ideapad extra buttons: Configuring as keyboard
[    27.697] (**) Option "config_info" "udev:/sys/devices/platform/ideapad/input/input7/event7"
[    27.697] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 14)
[    27.697] (**) Option "xkb_rules" "evdev"
[    27.697] (**) Option "xkb_model" "evdev"
[    27.697] (**) Option "xkb_layout" "us"
[    27.697] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[    27.697] (II) No input driver/identifier specified (ignoring)
[    39.796] (II) intel(0): EDID vendor "LGD", prod id 560
[    39.811] (II) intel(0): Printing DDC gathered Modelines:
[    39.811] (II) intel(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz)
[    53.230] (II) intel(0): EDID vendor "LGD", prod id 560
[    53.230] (II) intel(0): Printing DDC gathered Modelines:
[    53.230] (II) intel(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz)
$ cat /etc/X11/xorg.conf.d/10-evdev.conf 

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
$ cat /etc/X11/xorg.conf.d/10-synaptics.conf 
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
            Option "TapButton1" "1"
            Option "TapButton2" "2"
            Option "TapButton3" "3"
            Option "SHMConfig"  "true"
EndSection

Last edited by Doctor Drive (2011-10-27 10:38:59)

Offline

#19 2011-11-03 13:06:45

NeOnsKuLL
Member
From: Havana, Cuba
Registered: 2005-03-29
Posts: 117

Re: Xorg can't find synaptics after last update

I fixed it by removing all synaptics-related lines (inputclass, inputdevice or whatever) from my xorg.conf and use default 10-synaptics.conf. Just added the two lines for edge scrolling, nothing else.

I also removed my InputDevice section for my keyboard, and added my custom options to 10-evdev.conf corresponding section.

Everything else in my xorg.conf stay untouched.


Intel Core 2 Duo E8400 3.0 GHz | 2x1GB 667MHz | 250+750GB Seageate SATAII | Samsung 19" TFT 1440x900
Openbox + obmenugen + PyTyle | bmpanel2 | oblogout | conky | pyBgSetter (with Esetroot as backend)
Projects: obmenugen, pyBgSetter

Offline

#20 2011-12-03 18:00:16

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

Re: Xorg can't find synaptics after last update

NeOnsKuLL wrote:

I fixed it by removing all synaptics-related lines (inputclass, inputdevice or whatever) from my xorg.conf and use default 10-synaptics.conf. Just added the two lines for edge scrolling, nothing else.

I also removed my InputDevice section for my keyboard, and added my custom options to 10-evdev.conf corresponding section.

Everything else in my xorg.conf stay untouched.

Not the best solution for me because I don't use xorg.conf.
But I tried creating xorg.conf and removing the lines just in case and it didn't solve.

Offline

#21 2012-02-01 08:09:37

neoanima
Member
Registered: 2008-05-08
Posts: 40

Re: Xorg can't find synaptics after last update

removing all lines related to touchpad in xorg.org and 10-evdev.conf and udev.conf files, move them to the file 10-synaptics.conf.  at first, the touchpad partially works, which means no multitouch, no scrolling. I checked the log of xorg, found the autodev was off.

[   192.426] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/
dev/input/event10)
[   192.426] (II) AutoAddDevices is off - not adding device.
[   192.426] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/
dev/input/mouse2)
[   192.426] (II) AutoAddDevices is off - not adding device.

so I commented the AutoAddDevices line

#       Option      "AutoAddDevices"     "false"

of section ServerFlags in xorg.conf, and the driver of synaptic touchpad is loaded and the pad works well except for the function of TapButtion2.

Last edited by neoanima (2012-02-01 08:12:33)

Offline

#22 2012-09-13 10:32:05

nwoki
Member
Registered: 2010-09-14
Posts: 67

Re: Xorg can't find synaptics after last update

Hi guys, sorry to revive this post, but I'm having this problem with my Dell Vostro 3460 laptop. I tried all the above solutions but no luck.
This is what I get with

$  synclient -l
Couldn't find synaptics properties. No synaptics driver loaded?

my config files are as follows:

$  cat /etc/X11/xorg.conf.d/10-evdev.conf
Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

$ cat /etc/X11/xorg.conf.d/10-synaptics.conf
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
            Option "TapButton1" "1"
            Option "TapButton2" "2"
            Option "TapButton3" "3"
            Option "SHMConfig"  "true"
EndSection


I just have mouse movement, left and right click. Any ideas?

Offline

#23 2012-10-21 22:19:18

delexi
Member
Registered: 2011-11-29
Posts: 13

Re: Xorg can't find synaptics after last update

I had the same problem of synatics not beeing loaded. For me it was due to some incompatible ABI Versions (or something similar). I found that message in my Xorg log. I remembered i hadn't been updating my xf86-input-synaptics for quite some time, due to some different problem. So i updated said package and everything works as expected again.

Offline

Board footer

Powered by FluxBB