LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux From Scratch (https://www.linuxquestions.org/questions/linux-from-scratch-13/)
-   -   X.org Problem: Synaptic Toucpad (https://www.linuxquestions.org/questions/linux-from-scratch-13/x-org-problem-synaptic-toucpad-900349/)

TKH 08-31-2011 01:01 AM

X.org Problem: Synaptic Toucpad
 
Hello everyone!
Thanks for the helps before, and I hope that my current problem is something which is in your reach, as it is out of mine.

So I've installed all the X.org programs, including all the dependencies, set up all the proper modules for the kernel. My problem is setting up the Synaptic to be ran on the X server.

As I ran the X -retro -config ~/xorg.conf.new command, the grey screen and the movable 'X' cursor did appear, but I could not quit by pressing Ctrl+Alt+BackSpace, forcing me to press Ctrl+Alt+F2 instead (to move to another 'tty').

When I went back to the 'tty' where the X was, the grey screen was gone, leaving text like some program was running, forcing me to press Ctrl+C to interrupt the running.

I noticed the log was showing some errors:
Code:

(EE) ETPS/2 Elantech Touchpad Unable to query/initialize Synaptics
(EE) PreInit failed for input device "ETPS/2 Elantech Touchpad"
(EE) ETPS/2 Elantech Touchpad no synaptics event device found
(EE) Query no Synaptics: 6003C8

I wonder, I did set up the xorg.conf.new properly like this:
Code:

Section "ServerLayout"
....
    InputDevice "Touchpad" "CorePointer"
....
EndSection

....

Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Protocol" "Auto"
    Option "Device" "/dev/input/mouse0"
    Option "ZAxisMapping" "4 5 6 7"
EndSection

....

Anyone got a clue?

druuna 08-31-2011 01:40 AM

Hi,

The following addition to your xorg.conf file (the bold part) should fix the ctrl-alt-backspace problem:
Code:

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option      "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

This is new behaviour in the new X version and it doesn't allow you to use ctrl-alt-backspace out of the box.

I don't have any experience with touchpads and thus have never set it up in a BLFS X environment. I'll have a better look when time permits, maybe I see something you haven't tried already.

Anyway, hope this partially helps.

TKH 09-01-2011 01:32 AM

The "ctrl_alt_bksp" option you gave me doesn't seems to work, I wonder if something is missing.
Also, I notice that the '/dev/pts' cannot be mounted at the startup, does this have anything to do?

Thanks!

druuna 09-01-2011 01:50 AM

Hi,

Did you run into any problems during the build of 23. X Window System Environment?

Can you post the simple, unmodified xorg.conf.new file that is created? I.e. Only using these steps (as root, after removing possible leftovers):
Code:

cd ~ &&
Xorg -configure
X -retro -config ~/xorg.conf.new

After starting/stopping can you also post the content of /var/log/Xorg.0.log (ctrl-alt-bksp isn't yet working, so you do need to kill X using another tty).

Hope this helps.

TKH 09-01-2011 05:36 AM

Still the same...

TKH 09-01-2011 06:07 AM

Here is the brand new generated configuration file of ~/xorg.conf.new if you expect it:
Code:

Section "ServerLayout"
        Identifier    "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath  "/opt/X11R7.6/lib/X11/modules"
        FontPath    "/opt/X11R7.6/share/fonts/X11/misc/"
        FontPath    "/opt/X11R7.6/share/fonts/X11/TTF/"
        FontPath    "/opt/X11R7.6/share/fonts/X11/OTF/"
        FontPath    "/opt/X11R7.6/share/fonts/X11/Type1/"
        FontPath    "/opt/X11R7.6/share/fonts/X11/100dpi/"
        FontPath    "/opt/X11R7.6/share/fonts/X11/75dpi/"
EndSection

Section "Module"
        Load  "dbe"
        Load  "glx"
        Load  "dri"
        Load  "extmod"
        Load  "dri2"
        Load  "record"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "AccelMethod"                # [<str>]
        #Option    "DRI"                        # [<bool>]
        #Option    "ColorKey"                  # <i>
        #Option    "VideoKey"                  # <i>
        #Option    "FallbackDebug"              # [<bool>]
        #Option    "Tiling"                    # [<bool>]
        #Option    "Shadow"                    # [<bool>]
        #Option    "SwapbuffersWait"            # [<bool>]
        #Option    "XvMC"                      # [<bool>]
        #Option    "XvPreferOverlay"            # [<bool>]
        #Option    "DebugFlushBatches"          # [<bool>]
        #Option    "DebugFlushCaches"          # [<bool>]
        #Option    "DebugWait"                  # [<bool>]
        Identifier  "Card0"
        Driver      "intel"
        BusID      "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport  0 0
                Depth    1
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    4
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    8
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    15
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    16
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    24
        EndSubSection
EndSection

The changes I made were nothing more than changing the Driver to synaptics and playing around with the Identifier name (don't worry about this, I double-checked so it matches the InputDevice name); all done around the mouse section.

TKH 09-01-2011 06:09 AM

And if you want the Xorg.0.log:
Code:

[ 13230.992]
X.Org X Server 1.9.3
Release Date: 2010-12-13
[ 13230.998] X Protocol Version 11, Revision 0
[ 13230.999] Build Operating System: Linux 2.6.37 i686
[ 13231.001] Current Operating System: Linux kennohan-lfs 2.6.37 #1 SMP Wed Aug 31 03:08:26 WIT 2011 i686
[ 13231.003] Kernel command line: BOOT_IMAGE=/vmlinux-2.6.37 root=/dev/sda4 ro
[ 13231.006] Build Date: 29 August 2011  05:21:17AM
[ 13231.008] 
[ 13231.010] Current version of pixman: 0.22.2
[ 13231.012]        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[ 13231.017] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 13231.025] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep  2 00:36:20 2011
[ 13231.028] (++) Using config file: "/root/xorg.conf.new"
[ 13231.031] (==) Using system config directory "/opt/X11R7.6/share/X11/xorg.conf.d"
[ 13231.035] (==) ServerLayout "X.org Configured"
[ 13231.035] (**) |-->Screen "Screen0" (0)
[ 13231.035] (**) |  |-->Monitor "Monitor0"
[ 13231.035] (**) |  |-->Device "Card0"
[ 13231.035] (**) |-->Input Device "Mouse0"
[ 13231.035] (**) |-->Input Device "Keyboard0"
[ 13231.035] (==) Automatically adding devices
[ 13231.035] (==) Automatically enabling devices
[ 13231.036] (**) FontPath set to:
        /opt/X11R7.6/share/fonts/X11/misc/,
        /opt/X11R7.6/share/fonts/X11/TTF/,
        /opt/X11R7.6/share/fonts/X11/OTF/,
        /opt/X11R7.6/share/fonts/X11/Type1/,
        /opt/X11R7.6/share/fonts/X11/100dpi/,
        /opt/X11R7.6/share/fonts/X11/75dpi/,
        /opt/X11R7.6/share/fonts/X11/misc/,
        /opt/X11R7.6/share/fonts/X11/TTF/,
        /opt/X11R7.6/share/fonts/X11/OTF/,
        /opt/X11R7.6/share/fonts/X11/Type1/,
        /opt/X11R7.6/share/fonts/X11/100dpi/,
        /opt/X11R7.6/share/fonts/X11/75dpi/
[ 13231.036] (**) ModulePath set to "/opt/X11R7.6/lib/X11/modules"
[ 13231.036] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 13231.036] (WW) Disabling Mouse0
[ 13231.036] (WW) Disabling Keyboard0
[ 13231.036] (II) Loader magic: 0x81f1420
[ 13231.036] (II) Module ABI versions:
[ 13231.036]        X.Org ANSI C Emulation: 0.4
[ 13231.036]        X.Org Video Driver: 8.0
[ 13231.036]        X.Org XInput driver : 11.0
[ 13231.036]        X.Org Server Extension : 4.0
[ 13231.038] (--) PCI:*(0:0:2:0) 8086:27ae:1043:8340 rev 3, Mem @ 0xf3e00000/524288, 0xd0000000/268435456, 0xf3dc0000/262144, I/O @ 0x0000cc00/8
[ 13231.038] (--) PCI: (0:0:2:1) 8086:27a6:1043:8340 rev 3, Mem @ 0xf3e80000/524288
[ 13231.038] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 13231.038] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.038] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.038] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.039] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.039] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.039] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[ 13231.039] (II) LoadModule: "dbe"
[ 13231.041] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libdbe.so
[ 13231.041] (II) Module dbe: vendor="X.Org Foundation"
[ 13231.041]        compiled for 1.9.3, module version = 1.0.0
[ 13231.041]        Module class: X.Org Server Extension
[ 13231.041]        ABI class: X.Org Server Extension, version 4.0
[ 13231.041] (II) Loading extension DOUBLE-BUFFER
[ 13231.041] (II) LoadModule: "glx"
[ 13231.043] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libglx.so
[ 13231.043] (II) Module glx: vendor="X.Org Foundation"
[ 13231.043]        compiled for 1.9.3, module version = 1.0.0
[ 13231.043]        ABI class: X.Org Server Extension, version 4.0
[ 13231.043] (==) AIGLX enabled
[ 13231.043] (II) Loading extension GLX
[ 13231.043] (II) LoadModule: "dri"
[ 13231.045] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libdri.so
[ 13231.046] (II) Module dri: vendor="X.Org Foundation"
[ 13231.046]        compiled for 1.9.3, module version = 1.0.0
[ 13231.046]        ABI class: X.Org Server Extension, version 4.0
[ 13231.046] (II) Loading extension XFree86-DRI
[ 13231.046] (II) LoadModule: "extmod"
[ 13231.048] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libextmod.so
[ 13231.048] (II) Module extmod: vendor="X.Org Foundation"
[ 13231.048]        compiled for 1.9.3, module version = 1.0.0
[ 13231.048]        Module class: X.Org Server Extension
[ 13231.048]        ABI class: X.Org Server Extension, version 4.0
[ 13231.048] (II) Loading extension MIT-SCREEN-SAVER
[ 13231.048] (II) Loading extension XFree86-VidModeExtension
[ 13231.048] (II) Loading extension XFree86-DGA
[ 13231.048] (II) Loading extension DPMS
[ 13231.048] (II) Loading extension XVideo
[ 13231.049] (II) Loading extension XVideo-MotionCompensation
[ 13231.049] (II) Loading extension X-Resource
[ 13231.049] (II) LoadModule: "dri2"
[ 13231.050] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libdri2.so
[ 13231.051] (II) Module dri2: vendor="X.Org Foundation"
[ 13231.051]        compiled for 1.9.3, module version = 1.2.0
[ 13231.051]        ABI class: X.Org Server Extension, version 4.0
[ 13231.051] (II) Loading extension DRI2
[ 13231.051] (II) LoadModule: "record"
[ 13231.053] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/librecord.so
[ 13231.053] (II) Module record: vendor="X.Org Foundation"
[ 13231.053]        compiled for 1.9.3, module version = 1.13.0
[ 13231.053]        Module class: X.Org Server Extension
[ 13231.053]        ABI class: X.Org Server Extension, version 4.0
[ 13231.053] (II) Loading extension RECORD
[ 13231.053] (II) LoadModule: "intel"
[ 13231.054] (II) Loading /opt/X11R7.6/lib/X11/modules/drivers/intel_drv.so
[ 13231.054] (II) Module intel: vendor="X.Org Foundation"
[ 13231.054]        compiled for 1.9.3, module version = 2.13.0
[ 13231.054]        Module class: X.Org Video Driver
[ 13231.054]        ABI class: X.Org Video Driver, version 8.0
[ 13231.054] (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, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
        Sandybridge, Sandybridge
[ 13231.056] (--) using VT number 7

[ 13231.067] drmOpenDevice: node name is /dev/dri/card0
[ 13231.067] drmOpenDevice: open result is 10, (OK)
[ 13231.067] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[ 13231.067] drmOpenDevice: node name is /dev/dri/card0
[ 13231.067] drmOpenDevice: open result is 10, (OK)
[ 13231.067] drmOpenByBusid: drmOpenMinor returns 10
[ 13231.067] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[ 13231.067] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[ 13231.067] (==) intel(0): RGB weight 888
[ 13231.067] (==) intel(0): Default visual is TrueColor
[ 13231.068] (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME
[ 13231.068] (--) intel(0): Chipset: "945GME"
[ 13231.068] (**) intel(0): Tiling enabled
[ 13231.068] (**) intel(0): SwapBuffers wait enabled
[ 13231.068] (==) intel(0): video overlay key set to 0x101fe
[ 13231.068] (II) intel(0): Output LVDS1 using monitor section Monitor0
[ 13231.069] (II) intel(0): found backlight control interface /sys/class/backlight/eeepc
[ 13231.100] (II) intel(0): Output VGA1 has no monitor section
[ 13231.100] (II) intel(0): EDID for output LVDS1
[ 13231.101] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 13231.101] (II) intel(0): Not using default mode "320x175" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "320x200" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "360x200" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1024x768i" (exceeds panel dimensions)
[ 13231.102] (II) intel(0): Not using default mode "512x384i" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
[ 13231.102] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
[ 13231.102] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
[ 13231.102] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1024x768" (exceeds panel dimensions)
[ 13231.102] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 13231.102] (II) intel(0): Not using default mode "1152x864" (exceeds panel dimensions)
[ 13231.103] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1280x960" (exceeds panel dimensions)
[ 13231.103] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1280x960" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1280x1024" (exceeds panel dimensions)
[ 13231.103] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1280x1024" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1280x1024" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1600x1200" (exceeds panel dimensions)
[ 13231.103] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1600x1200" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1600x1200" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1600x1200" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1600x1200" (hsync out of range)
[ 13231.103] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 13231.103] (II) intel(0): Not using default mode "1792x1344" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1792x1344" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1856x1392" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1856x1392" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1920x1440" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1920x1440" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "832x624" (exceeds panel dimensions)
[ 13231.104] (II) intel(0): Not using default mode "416x312" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1400x1050" (exceeds panel dimensions)
[ 13231.104] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1400x1050" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "1920x1440" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "2048x1536" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[ 13231.104] (II) intel(0): Not using default mode "2048x1536" (hsync out of range)
[ 13231.104] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[ 13231.105] (II) intel(0): Not using default mode "2048x1536" (hsync out of range)
[ 13231.105] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[ 13231.105] (II) intel(0): Printing probed modes for output LVDS1
[ 13231.105] (II) intel(0): Modeline "1024x600"x60.0  45.00  1024 1077 1112 1200  600 604 609 625 -hsync -vsync (37.5 kHz)
[ 13231.105] (II) intel(0): Modeline "800x600"x85.1  56.30  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz)
[ 13231.105] (II) intel(0): Modeline "800x600"x72.2  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[ 13231.105] (II) intel(0): Modeline "800x600"x75.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[ 13231.105] (II) intel(0): Modeline "800x600"x60.3  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[ 13231.105] (II) intel(0): Modeline "800x600"x56.2  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[ 13231.105] (II) intel(0): Modeline "640x480"x85.0  36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz)
[ 13231.105] (II) intel(0): Modeline "640x480"x72.8  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[ 13231.105] (II) intel(0): Modeline "640x480"x75.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[ 13231.105] (II) intel(0): Modeline "640x480"x59.9  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[ 13231.105] (II) intel(0): Modeline "720x400"x85.0  35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz)
[ 13231.105] (II) intel(0): Modeline "640x400"x85.1  31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz)
[ 13231.105] (II) intel(0): Modeline "640x350"x85.1  31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz)
[ 13231.136] (II) intel(0): EDID for output VGA1
[ 13231.136] (II) intel(0): Output LVDS1 connected
[ 13231.136] (II) intel(0): Output VGA1 disconnected
[ 13231.136] (II) intel(0): Using exact sizes for initial modes
[ 13231.136] (II) intel(0): Output LVDS1 using initial mode 1024x600
[ 13231.136] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 13231.136] (II) intel(0): Kernel page flipping support detected, enabling
[ 13231.137] (==) intel(0): DPI set to (96, 96)
[ 13231.137] (II) Loading sub module "fb"
[ 13231.137] (II) LoadModule: "fb"
[ 13231.138] (II) Loading /opt/X11R7.6/lib/X11/modules/libfb.so
[ 13231.139] (II) Module fb: vendor="X.Org Foundation"
[ 13231.139]        compiled for 1.9.3, module version = 1.0.0
[ 13231.139]        ABI class: X.Org ANSI C Emulation, version 0.4
[ 13231.139] (==) Depth 24 pixmap format is 32 bpp
[ 13231.140] (==) intel(0): VideoRam: 262144 KB
[ 13231.140] (II) intel(0): [DRI2] Setup complete
[ 13231.140] (II) intel(0): [DRI2]  DRI driver: i915
[ 13231.140] (II) intel(0): Allocated new frame buffer 1024x600 stride 4096, tiled
[ 13231.140] (II) UXA(0): Driver registered support for the following operations:
[ 13231.140] (II)        solid
[ 13231.140] (II)        copy
[ 13231.140] (II)        composite (RENDER acceleration)
[ 13231.140] (II)        put_image
[ 13231.140] (II)        get_image
[ 13231.141] (==) intel(0): Backing store disabled
[ 13231.141] (==) intel(0): Silken mouse enabled
[ 13231.141] (II) intel(0): Initializing HW Cursor
[ 13231.150] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 13231.155] (==) intel(0): DPMS enabled
[ 13231.155] (==) intel(0): Intel XvMC decoder disabled
[ 13231.155] (II) intel(0): Set up textured video
[ 13231.155] (II) intel(0): Set up overlay video
[ 13231.155] (II) intel(0): direct rendering: DRI2 Enabled
[ 13231.156] (--) RandR disabled
[ 13231.156] (II) Initializing built-in extension Generic Event Extension
[ 13231.156] (II) Initializing built-in extension SHAPE
[ 13231.156] (II) Initializing built-in extension MIT-SHM
[ 13231.156] (II) Initializing built-in extension XInputExtension
[ 13231.156] (II) Initializing built-in extension XTEST
[ 13231.156] (II) Initializing built-in extension BIG-REQUESTS
[ 13231.156] (II) Initializing built-in extension SYNC
[ 13231.156] (II) Initializing built-in extension XKEYBOARD
[ 13231.156] (II) Initializing built-in extension XC-MISC
[ 13231.156] (II) Initializing built-in extension XINERAMA
[ 13231.156] (II) Initializing built-in extension XFIXES
[ 13231.156] (II) Initializing built-in extension RENDER
[ 13231.156] (II) Initializing built-in extension RANDR
[ 13231.156] (II) Initializing built-in extension COMPOSITE
[ 13231.156] (II) Initializing built-in extension DAMAGE
[ 13231.196] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 13231.196] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 13231.196] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 13231.197] (II) AIGLX: enabled GLX_SGI_make_current_read
[ 13231.197] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 13231.197] (II) AIGLX: Loaded and initialized /opt/X11R7.6/lib/dri/i915_dri.so
[ 13231.197] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 13231.198] (II) intel(0): Setting screen physical size to 270 x 158
[ 13231.875] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[ 13231.875] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 13231.875] (II) LoadModule: "evdev"
[ 13231.876] (II) Loading /opt/X11R7.6/lib/X11/modules/input/evdev_drv.so
[ 13231.876] (II) Module evdev: vendor="X.Org Foundation"
[ 13231.876]        compiled for 1.9.3, module version = 2.5.0
[ 13231.876]        Module class: X.Org XInput Driver
[ 13231.876]        ABI class: X.Org XInput driver, version 11.0
[ 13231.876] (**) Power Button: always reports core events
[ 13231.876] (**) Power Button: Device: "/dev/input/event4"
[ 13231.892] (--) Power Button: Found keys
[ 13231.892] (II) Power Button: Configuring as keyboard
[ 13231.892] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 13231.892] (**) Option "xkb_rules" "evdev"
[ 13231.892] (**) Option "xkb_model" "evdev"
[ 13231.892] (**) Option "xkb_layout" "us"
[ 13231.974] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[ 13231.974] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 13231.974] (**) Video Bus: always reports core events
[ 13231.974] (**) Video Bus: Device: "/dev/input/event5"
[ 13231.984] (--) Video Bus: Found keys
[ 13231.984] (II) Video Bus: Configuring as keyboard
[ 13231.984] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[ 13231.984] (**) Option "xkb_rules" "evdev"
[ 13231.984] (**) Option "xkb_model" "evdev"
[ 13231.984] (**) Option "xkb_layout" "us"
[ 13231.991] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 13231.991] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 13231.991] (**) Power Button: always reports core events
[ 13231.991] (**) Power Button: Device: "/dev/input/event3"
[ 13232.012] (--) Power Button: Found keys
[ 13232.012] (II) Power Button: Configuring as keyboard
[ 13232.012] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 13232.012] (**) Option "xkb_rules" "evdev"
[ 13232.012] (**) Option "xkb_model" "evdev"
[ 13232.012] (**) Option "xkb_layout" "us"
[ 13232.014] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[ 13232.014] (II) No input driver/identifier specified (ignoring)
[ 13232.015] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[ 13232.016] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 13232.016] (**) Sleep Button: always reports core events
[ 13232.016] (**) Sleep Button: Device: "/dev/input/event2"
[ 13232.040] (--) Sleep Button: Found keys
[ 13232.040] (II) Sleep Button: Configuring as keyboard
[ 13232.040] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[ 13232.040] (**) Option "xkb_rules" "evdev"
[ 13232.040] (**) Option "xkb_model" "evdev"
[ 13232.040] (**) Option "xkb_layout" "us"
[ 13232.047] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event8)
[ 13232.047] (II) No input driver/identifier specified (ignoring)
[ 13232.048] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event9)
[ 13232.048] (II) No input driver/identifier specified (ignoring)
[ 13232.060] (II) config/udev: Adding input device Asus EeePC extra buttons (/dev/input/event7)
[ 13232.060] (**) Asus EeePC extra buttons: Applying InputClass "evdev keyboard catchall"
[ 13232.060] (**) Asus EeePC extra buttons: always reports core events
[ 13232.060] (**) Asus EeePC extra buttons: Device: "/dev/input/event7"
[ 13232.104] (--) Asus EeePC extra buttons: Found keys
[ 13232.104] (II) Asus EeePC extra buttons: Configuring as keyboard
[ 13232.104] (II) XINPUT: Adding extended input device "Asus EeePC extra buttons" (type: KEYBOARD)
[ 13232.104] (**) Option "xkb_rules" "evdev"
[ 13232.104] (**) Option "xkb_model" "evdev"
[ 13232.104] (**) Option "xkb_layout" "us"
[ 13232.107] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[ 13232.107] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[ 13232.107] (**) AT Translated Set 2 keyboard: always reports core events
[ 13232.107] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[ 13232.136] (--) AT Translated Set 2 keyboard: Found keys
[ 13232.136] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[ 13232.136] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[ 13232.136] (**) Option "xkb_rules" "evdev"
[ 13232.136] (**) Option "xkb_model" "evdev"
[ 13232.136] (**) Option "xkb_layout" "us"
[ 13232.138] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event10)
[ 13232.138] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
[ 13232.138] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[ 13232.138] (II) LoadModule: "synaptics"
[ 13232.139] (II) Loading /opt/X11R7.6/lib/X11/modules/input/synaptics_drv.so
[ 13232.139] (II) Module synaptics: vendor="X.Org Foundation"
[ 13232.139]        compiled for 1.9.3, module version = 1.3.0
[ 13232.139]        Module class: X.Org XInput Driver
[ 13232.139]        ABI class: X.Org XInput driver, version 11.0
[ 13232.139] (II) Synaptics touchpad driver version 1.3.0
[ 13232.140] (**) Option "Device" "/dev/input/event10"
[ 13232.296] (--) ETPS/2 Elantech Touchpad: x-axis range 32 - 544
[ 13232.296] (--) ETPS/2 Elantech Touchpad: y-axis range 32 - 352
[ 13232.296] (II) ETPS/2 Elantech Touchpad: device does not report pressure, will use touch data.
[ 13232.296] (--) ETPS/2 Elantech Touchpad: buttons: left right double triple
[ 13232.296] (--) ETPS/2 Elantech Touchpad: invalid pressure range.  defaulting to 0 - 256
[ 13232.296] (--) ETPS/2 Elantech Touchpad: invalid finger width range.  defaulting to 0 - 16
[ 13232.424] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 13232.424] (**) ETPS/2 Elantech Touchpad: always reports core events
[ 13232.488] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD)
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
[ 13232.488] (**) ETPS/2 Elantech Touchpad: MaxSpeed is now 1.75
[ 13232.488] (**) ETPS/2 Elantech Touchpad: AccelFactor is now 0.332
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[ 13232.600] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 13232.601] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[ 13232.601] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[ 13232.601] (II) Synaptics touchpad driver version 1.3.0
[ 13234.776] (EE) ETPS/2 Elantech Touchpad no synaptics event device found
[ 13234.776] (**) Option "Device" "/dev/input/mouse0"
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid x-axis range.  defaulting to 1615 - 5685
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid y-axis range.  defaulting to 1729 - 4171
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid pressure range.  defaulting to 0 - 256
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid finger width range.  defaulting to 0 - 16
[ 13234.829] (EE) Query no Synaptics: 6003C8
[ 13234.829] (--) ETPS/2 Elantech Touchpad: no supported touchpad found
[ 13234.829] (EE) ETPS/2 Elantech Touchpad Unable to query/initialize Synaptics hardware.
[ 13234.880] (EE) PreInit failed for input device "ETPS/2 Elantech Touchpad"
[ 13234.880] (II) UnloadModule: "synaptics"
[ 13234.881] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[ 13234.881] (II) No input driver/identifier specified (ignoring)
[ 13242.884] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 13246.694] (II) UnloadModule: "synaptics"
[ 13246.694] (II) AT Translated Set 2 keyboard: Close
[ 13246.694] (II) UnloadModule: "evdev"
[ 13246.694] (II) Asus EeePC extra buttons: Close
[ 13246.694] (II) UnloadModule: "evdev"
[ 13246.694] (II) Sleep Button: Close
[ 13246.694] (II) UnloadModule: "evdev"
[ 13246.694] (II) Power Button: Close
[ 13246.694] (II) UnloadModule: "evdev"
[ 13246.695] (II) Video Bus: Close
[ 13246.695] (II) UnloadModule: "evdev"
[ 13246.695] (II) Power Button: Close
[ 13246.695] (II) UnloadModule: "evdev"


druuna 09-01-2011 08:17 AM

Hi again,

Before I start looking at the posted info: Is the output posted related? I.e. Was the output posted in post #7 generated by starting the config file posted in post #6? I'm asking because it doesn't look to be....

I'm trying to establish if X runs without any (major) errors when only using that what is picked up automatically (no manual changes).

You might try to add the Option "XkbOptions" "terminate:ctrl_alt_bksp" I mentioned in post #2, but nothing else.

TKH 09-01-2011 08:34 AM

Quote:

Originally Posted by druuna (Post 4458785)
Was the output posted in post #7 generated by starting the config file posted in post #6?

Indeed it was. Is there anything wrong with these two?

Anyway, I've been thinking: is there anything to do in $XORG_PREFIX/share/X11/xorg.conf.d?

druuna 09-01-2011 08:50 AM

Hi,

Quote:

Originally Posted by TKH
Indeed it was. Is there anything wrong with these two?

The output posted mentions a 29 August 2011 build date and has the (EE) Query no Synaptics: 6003C8 error present. Looks to me this output does not belong to the xorg.conf.new file posted in post #6.

Quote:

Originally Posted by TKH
Anyway, I've been thinking: is there anything to do in $XORG_PREFIX/share/X11/xorg.conf.d?

I wouldn't start tinkering with it until you have an idea what is wrong.

TKH 09-01-2011 09:25 AM

Well, the August 29 was the date when I recompile my kernel. The real date is above (line #5).

druuna 09-01-2011 09:50 AM

Hi,

Code:

[ 13231.001] Current Operating System: Linux kennohan-lfs 2.6.37 #1 SMP Wed Aug 31 03:08:26 WIT 2011 i686
Kernel build date.

Code:

[ 13231.006] Build Date: 29 August 2011  05:21:17AM
X build date.

I assumed the second block would reflect the xorg.conf date (which is not true).

But besides that, hoe about my second observation. This part:
Code:

[ 13232.424] (**) ETPS/2 Elantech Touchpad: always reports core events
[ 13232.488] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD)
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
[ 13232.488] (**) ETPS/2 Elantech Touchpad: MaxSpeed is now 1.75
[ 13232.488] (**) ETPS/2 Elantech Touchpad: AccelFactor is now 0.332
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[ 13232.488] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4

[ 13232.600] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 13232.601] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[ 13232.601] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[ 13232.601] (II) Synaptics touchpad driver version 1.3.0
[ 13234.776] (EE) ETPS/2 Elantech Touchpad no synaptics event device found
[ 13234.776] (**) Option "Device" "/dev/input/mouse0"
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid x-axis range.  defaulting to 1615 - 5685
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid y-axis range.  defaulting to 1729 - 4171
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid pressure range.  defaulting to 0 - 256
[ 13234.808] (--) ETPS/2 Elantech Touchpad: invalid finger width range.  defaulting to 0 - 16
[ 13234.829] (EE) Query no Synaptics: 6003C8
[ 13234.829] (--) ETPS/2 Elantech Touchpad: no supported touchpad found
[ 13234.829] (EE) ETPS/2 Elantech Touchpad Unable to query/initialize Synaptics hardware.
[ 13234.880] (EE) PreInit failed for input device "ETPS/2 Elantech Touchpad"
[ 13234.880] (II) UnloadModule: "synaptics"

As mentioned in the top of the Xorg log file: All lines that have ** in them are taken from the xorg.conf file and this is _NOT_ present in post number #6!!

druuna 09-01-2011 11:03 AM

Hi again

Give this config file a try:
Code:

Section "ServerLayout"
    Identifier    "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option      "Xinerama" "off"
    Option      "AllowEmptyInput" "off"

EndSection

Section "Files"
    ModulePath  "/opt/X11R7.6/lib/X11/modules"
    FontPath    "/opt/X11R7.6/share/fonts/X11/misc/"
    FontPath    "/opt/X11R7.6/share/fonts/X11/TTF/"
    FontPath    "/opt/X11R7.6/share/fonts/X11/OTF/"
    FontPath    "/opt/X11R7.6/share/fonts/X11/Type1/"
    FontPath    "/opt/X11R7.6/share/fonts/X11/100dpi/"
    FontPath    "/opt/X11R7.6/share/fonts/X11/75dpi/"
EndSection

Section "Module"
    Load  "dbe"
    Load  "glx"
    Load  "dri"
    Load  "extmod"
    Load  "dri2"
    Load  "record"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option      "CoreKeyboard"
    Option      "XkbOptions" "terminate:ctrl_alt_bksp"

EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier  "Monitor0"
    VendorName  "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
    Identifier  "Card0"
    Driver      "intel"
    BusID      "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device    "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
          Viewport  0 0
          Depth    1
    EndSubSection
    SubSection "Display"
          Viewport  0 0
          Depth    4
    EndSubSection
    SubSection "Display"
          Viewport  0 0
          Depth    8
    EndSubSection
    SubSection "Display"
          Viewport  0 0
          Depth    15
    EndSubSection
    SubSection "Display"
          Viewport  0 0
          Depth    16
    EndSubSection
    SubSection "Display"
          Viewport  0 0
          Depth    24
    EndSubSection
EndSection

Changes are bold.

- Option "AllowEmptyInput" "off"
Should get rid of the following messages:
Code:

[ 13231.036] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 13231.036] (WW) Disabling Mouse0
[ 13231.036] (WW) Disabling Keyboard0

- Option "CoreKeyboard"
Option "XkbOptions" "terminate:ctrl_alt_bksp"

This should give you ctrl-alt-bksp.

Hope this helps.

TKH 09-01-2011 08:26 PM

Thank you very much! I'll try that a bit later, as I'm busy right now.

TKH 09-03-2011 12:07 AM

druuna,
Here is the result of what you told me. Before that, I'd like to thank you for your helps.

Code:

[  6630.788]
X.Org X Server 1.9.3
Release Date: 2010-12-13
[  6630.796] X Protocol Version 11, Revision 0
[  6630.798] Build Operating System: Linux 2.6.37 i686
[  6630.801] Current Operating System: Linux kennohan-lfs 2.6.37 #1 SMP Wed Aug 31 03:08:26 WIT 2011 i686
[  6630.803] Kernel command line: BOOT_IMAGE=/vmlinux-2.6.37 root=/dev/sda4 ro
[  6630.806] Build Date: 29 August 2011  05:21:17AM
[......................]
[  6630.818] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  6630.826] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep  3 18:37:56 2011
[  6630.829] (++) Using config file: "/root/xorg.conf.old"
[  6630.832] (==) Using system config directory "/opt/X11R7.6/share/X11/xorg.conf.d"
[  6630.835] (==) ServerLayout "X.org Configured"
[  6630.835] (**) |-->Screen "Screen0" (0)
[  6630.835] (**) |  |-->Monitor "Monitor0"
[  6630.836] (**) |  |-->Device "Card0"
[  6630.836] (**) |-->Input Device "TouchPad"
[  6630.836] (**) |-->Input Device "Keyboard0"
[  6630.836] (**) Option "Xinerama" "Off"
[  6630.836] (**) Option "AllowEmptyInput" "Off"
[  6630.836] (==) Automatically adding devices
[  6630.836] (==) Automatically enabling devices
[...............]
[  6630.839] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  6630.839] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[  6630.839] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[  6630.839] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  6630.839] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[  6630.839] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[  6630.839] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[..................]
[  6630.849] (II) Loading extension MIT-SCREEN-SAVER
[  6630.849] (II) Loading extension XFree86-VidModeExtension
[  6630.849] (II) Loading extension XFree86-DGA
[  6630.849] (II) Loading extension DPMS
[  6630.849] (II) Loading extension XVideo
[  6630.849] (II) Loading extension XVideo-MotionCompensation
[  6630.849] (II) Loading extension X-Resource
[  6630.849] (II) LoadModule: "dri2"
[  6630.851] (II) Loading /opt/X11R7.6/lib/X11/modules/extensions/libdri2.so
[..................]
[  6630.869] drmOpenDevice: node name is /dev/dri/card0
[  6630.869] drmOpenDevice: open result is 10, (OK)
[  6630.870] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[  6630.870] drmOpenDevice: node name is /dev/dri/card0
[  6630.870] drmOpenDevice: open result is 10, (OK)
[  6630.870] drmOpenByBusid: drmOpenMinor returns 10
[  6630.870] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[........................]
[  6630.956] (--) RandR disabled
[  6630.956] (II) Initializing built-in extension Generic Event Extension
[  6630.956] (II) Initializing built-in extension SHAPE
[  6630.956] (II) Initializing built-in extension MIT-SHM
[  6630.956] (II) Initializing built-in extension XInputExtension
[  6630.956] (II) Initializing built-in extension XTEST
[  6630.956] (II) Initializing built-in extension BIG-REQUESTS
[  6630.956] (II) Initializing built-in extension SYNC
[  6630.956] (II) Initializing built-in extension XKEYBOARD
[  6630.956] (II) Initializing built-in extension XC-MISC
[  6630.956] (II) Initializing built-in extension XINERAMA
[  6630.956] (II) Initializing built-in extension XFIXES
[  6630.956] (II) Initializing built-in extension RENDER
[  6630.956] (II) Initializing built-in extension RANDR
[  6630.956] (II) Initializing built-in extension COMPOSITE
[  6630.956] (II) Initializing built-in extension DAMAGE
[  6630.997] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  6630.997] (II) AIGLX: enabled GLX_INTEL_swap_event
[  6630.997] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  6630.997] (II) AIGLX: enabled GLX_SGI_make_current_read
[  6630.997] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  6630.997] (II) AIGLX: Loaded and initialized /opt/X11R7.6/lib/dri/i915_dri.so
[  6630.997] (II) GLX: Initialized DRI2 GL provider for screen 0
[  6630.999] (II) intel(0): Setting screen physical size to 270 x 158
[  6631.937] (II) Synaptics touchpad driver version 1.3.0
[  6633.836] (--) TouchPad auto-dev sets device to /dev/input/event10
[  6633.900] (**) Option "Device" "/dev/input/event10"
[  6634.060] (--) TouchPad: x-axis range 32 - 544
[  6634.060] (--) TouchPad: y-axis range 32 - 352
[  6634.060] (II) TouchPad: device does not report pressure, will use touch data.
[  6634.060] (--) TouchPad: buttons: left right double triple
[  6634.060] (--) TouchPad: invalid pressure range.  defaulting to 0 - 256
[  6634.060] (--) TouchPad: invalid finger width range.  defaulting to 0 - 16
[  6634.188] (--) TouchPad: touchpad found
[  6634.188] (**) Option "CorePointer"
[  6634.188] (**) TouchPad: always reports core events
[  6634.252] (II) XINPUT: Adding extended input device "TouchPad" (type: TOUCHPAD)
[  6634.252] (**) TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  6634.252] (**) TouchPad: MaxSpeed is now 1.75
[  6634.252] (**) TouchPad: AccelFactor is now 0.332
[  6634.252] (**) TouchPad: (accel) keeping acceleration scheme 1
[  6634.252] (**) TouchPad: (accel) acceleration profile 1
[  6634.252] (**) TouchPad: (accel) acceleration factor: 2.000
[  6634.252] (**) TouchPad: (accel) acceleration threshold: 4
[  6634.348] (--) TouchPad: touchpad found
[........................]
[  6634.746] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event10)
[  6634.746] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[  6634.746] (II) Synaptics touchpad driver version 1.3.0
[  6634.746] (**) Option "Device" "/dev/input/event10"
[  6634.776] (--) ETPS/2 Elantech Touchpad: invalid x-axis range.  defaulting to 1615 - 5685
[  6634.776] (--) ETPS/2 Elantech Touchpad: invalid y-axis range.  defaulting to 1729 - 4171
[  6634.776] (--) ETPS/2 Elantech Touchpad: invalid pressure range.  defaulting to 0 - 256
[  6634.776] (--) ETPS/2 Elantech Touchpad: invalid finger width range.  defaulting to 0 - 16
[  6634.776] (--) ETPS/2 Elantech Touchpad: no supported touchpad found
[  6634.776] (EE) ETPS/2 Elantech Touchpad Unable to query/initialize Synaptics hardware.
[  6634.808] (EE) PreInit failed for input device "ETPS/2 Elantech Touchpad"
[  6634.808] (II) UnloadModule: "synaptics"
[  6634.809] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[  6634.809] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[  6634.809] (II) Synaptics touchpad driver version 1.3.0
[  6636.952] (EE) ETPS/2 Elantech Touchpad no synaptics event device found
[  6636.952] (**) Option "Device" "/dev/input/mouse0"
[  6636.984] (--) ETPS/2 Elantech Touchpad: invalid x-axis range.  defaulting to 1615 - 5685
[  6636.984] (--) ETPS/2 Elantech Touchpad: invalid y-axis range.  defaulting to 1729 - 4171
[  6636.984] (--) ETPS/2 Elantech Touchpad: invalid pressure range.  defaulting to 0 - 256
[  6636.984] (--) ETPS/2 Elantech Touchpad: invalid finger width range.  defaulting to 0 - 16
[  6637.005] (EE) Query no Synaptics: 6003C8
[  6637.005] (--) ETPS/2 Elantech Touchpad: no supported touchpad found
[  6637.005] (EE) ETPS/2 Elantech Touchpad Unable to query/initialize Synaptics hardware.
[  6637.056] (EE) PreInit failed for input device "ETPS/2 Elantech Touchpad"
[  6637.056] (II) UnloadModule: "synaptics"
[  6637.057] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[  6637.057] (II) No input driver/identifier specified (ignoring)
[.........................]

I've cut out some unneeded stuff from the log, leaving the basic system information, some basic module loading information, and the details about the touchpad loading. Notice that the touchpad was added twice; I think this is the main cause of this error. Does that help?

For post #12:
Yeah now that you mention it, it looks kinda weird... Perhaps it comes from the xorg.conf.d.


All times are GMT -5. The time now is 12:19 PM.