Using OpenGL 3+ with intel xf86-video-intel

I'm running Arch on a 2008 macbook with the following graphics card:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 03)
I need to get OpenGL 3+ working on my computer for a class, but whever I try to run a program, the linkage fails.
According to glxinfo, I have the following versions running:
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) 965GM
OpenGL version string: 2.1 Mesa 10.0.2
OpenGL shading language version string: 1.20
OpenGL extensions:
I'm trying to run a cpp program with basic headers (and simple shaders)
#include <GL/glew.h>
#include <GL/freeglut.h>
#include <glm/glm.hpp>
and get the following message with the env variable LIBGL_DEBUG=verbose:
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/i965_dri.so
libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/i965_dri.so
Shader 1 (vertex shader) compile log:
0:3(10): error: GLSL 3.30 is not supported. Supported versions are: 1.10, 1.20, and 1.00 ES
Shader 2 (fragment shader) compile log:
0:3(10): error: GLSL 3.30 is not supported. Supported versions are: 1.10, 1.20, and 1.00 ES
I have updated packages for:
local/iasl 20130823-1
Intel ACPI Source Language compiler
local/intel-dri 10.0.2-1
Mesa drivers for Intel
local/xf86-video-intel 2.99.907-2 (xorg-drivers xorg)
X.org Intel i810/i830/i915/945G/G965+ video drivers
local/glu 9.0.0-2
Mesa OpenGL Utility library
local/intel-dri 10.0.2-1
Mesa drivers for Intel
local/libtxc_dxtn 1.0.1-5
S3 Texture Compression (S3TC) library for Mesa
local/mesa 10.0.2-1
an open-source implementation of the OpenGL specification
local/mesa-demos 8.1.0-1
Mesa demos and tools
local/mesa-libgl 10.0.2-1
Mesa 3-D graphics library
How can I get OpenGL 3+ to work on my system?
According to mesa at http://www.mesa3d.org/relnotes/10.0.1.html,
Mesa 10.0.1 implements the OpenGL 3.3 API, but the version reported by glGetString(GL_VERSION) or glGetIntegerv(GL_MAJOR_VERSION) / glGetIntegerv(GL_MINOR_VERSION) depends on the particular driver being used. Some drivers don't support all the features required in OpenGL 3.3. OpenGL 3.3 is only available if requested at context creation because compatibility contexts not supported.
But they don't explain the contect creation part any further! I don't see why the intel driver isn't working, since it apparently supports OpenGL 3+.
http://www.x.org/wiki/IntelGraphicsDriver/
Any help would be really appreciated! It's going to be a right pain in the ass to do my coursework on a different computer.
Last edited by 01 (2014-01-20 01:00:44)

According to Wikipedia your gpu only supports opengl 2.0 https://en.wikipedia.org/wiki/Intel_GMA#GMA_X3100

Similar Messages

  • Xf86-video-intel disable tv

    I am on a lenovo T61 laptop.  I was running xorg 1.2 (current) without any xorg.conf with kde and everything worked fine, i had the right resolution of 1440x900, except i had no video acceleration ( intel 965 chipset/X3100). I did Xorg -configure to write an xorg.conf to disk and put it in /ext/X11/xorg.conf. I rebooted and everything was fine. I then enabled the testing repo, and updated xorg to 1.3 and installed the xf86-video-intel driver, though i didnt enable. Again i rebooted and everything was working except video acceleration. I then enable the i810 driver in xorg.conf and rebooted. It loaded, but now my screen isnt configured properly. Kde detects my screen as 1024x768, but video is still being output at 1440x900; this leads to kde taking up about 1/2 the screen and making control awkward. xrandr shows that the internal monitor is displaying at 1440x900, but that a tv is detected and playing at 1024x768. This leads me to think that kde is picking up on the tv resolution and tries to display as if that was my monitors resolution. No tv is connected.
    So I guess the question that i should be asking: how do i disable tv out on the i965/X3100 chipset with the xf86-video-intel driver?

    Well, i found the following thread which solved my problem: http://www.fedoraforum.org/forum/showth … p?t=159516
    made the following alterations:
    "One thing that you might run into (I did) is that GDM doesn't use the entire screen. Neither does gnome. This is because the TV output is enabled. You can disable it by adding the following commands to your xorg.conf
    Section "Monitor"
    Identifier "TVOutput"
    Option "Disable" "true"
    EndSection
    and then in the Device Section add the following
    Option "monitor-TV" "TVOutput""
    Now everything seems to be working. The only problem, if it is one, is that xrandr only outputs "xrandr: Output TV is not disconnected but has no modes" instead of all the modes available for my laptop screen and which one is running.

  • Xf86-video-intel doesn't work for direct rendering

    With xf86-video-intel, I can't use direct rendering.  With LIBGL_DEBUG=verbose, glxinfo says this:
    libGL: XF86DRIGetClientDriverName: 1.9.0 i915 (screen 0)
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri//i915_dri.so
    libGL error: dlopen /usr/lib/xorg/modules/dri//i915_dri.so failed (/usr/lib/xorg/modules/dri//i915_dri.so: undefined symbol: _glapi_tls_Context)
    libGL error: unable to load driver: i915_dri.so
    And, everything that tries to use 3d segfaults just before it closes, presumably when it unloads the driver.

    tavianator wrote:
    tavianator@antimatter> pacman -Q libdrm ~
    libdrm 2.3.0-1
    tavianator@antimatter> pacman -Q mesa ~
    mesa 7.0.3rc2-1
    tavianator@antimatter> pacman -Q xf86-video-intel ~
    xf86-video-intel 2.3.0-2
    tavianator@antimatter> pacman -Q xorg-server ~
    xorg-server 1.4.0.90-9
    tavianator@antimatter> uname -r ~
    2.6.24-ARCH
    tavianator@antimatter>
    I compiled the latest xf86-video-intel from source, but the same thing happens with 2.2.1-2, and xf86-video-i810.
    xorg-server is compiled with tls support (thread local storage, --enable-glx-tls). Your xserver is looking for a tls version of the dri driver but the driver is compiled without tls support.
    If you have libgl installed and you are not using custom packages, everything should works. I'm currently using my custom packages but i tried with the extra repo too, everything works as expected.
    [lexiw@stroggos ~]$ grep tls /var/abs/extra/xorg-server/PKGBUILD
                  --enable-glx-tls \
    [lexiw@stroggos ~]$ grep TLS /var/abs/extra/mesa/PKGBUILD
      echo "ARCH_FLAGS += -DGLX_USE_TLS" >> configs/${CONFIG}
    [lexiw@stroggos ~]$ grep TLS /var/abs/extra/libgl/PKGBUILD
      echo "ARCH_FLAGS += -DGLX_USE_TLS" >> configs/${CONFIG}
    [lexiw@stroggos ~]$ grep TLS /var/abs/extra/xf86-video-intel/PKGBUILD
      echo "ARCH_FLAGS += -DGLX_USE_TLS" >> ${CONFIG}
    My system:
    [lexiw@stroggos ~]$ pacman -Q libdrm
    libdrm 2.3.0-1
    [lexiw@stroggos ~]$ pacman -Q mesa
    mesa 7.0.3-1
    [lexiw@stroggos ~]$ pacman -Q xf86-video-intel
    xf86-video-intel 2.3.0-1
    [lexiw@stroggos ~]$ pacman -Q xorg-server
    xorg-server 1.4.0.90-10
    [lexiw@stroggos ~]$ uname -r
    2.6.25-ARCH
    [lexiw@stroggos ~]$ pacman -Q libgl
    libgl 7.0.3-1
    Never had any problem with the official packages (even with kernel 2.6.24), every time i had the "tls problem" it was my fault for recompiling with the wrong flags.
    Last edited by lexiw (2008-05-03 13:30:25)

  • Failing to load drivers (xf86-video-intel) for Intel GMA x3100

    Heey,
    I'm installing Archlinux on my Compaq 6710b. This is the problem:
    No matter what I try, Xorg -configure fails to load the intel drivers for my 965 gma (x3100).
    Weird is that a week ago, I did an install with the pre-release iso's and it worked flawlessly detecting everything as it should and by itself. Now with the new iso's I did several installs, but I can't get the xf86-video-intel driver to work, it's giving me the following error message:
    List of video drivers:
        fglrx  <------------------- don't know when he came in
        i810  <
        intel  < ------------------- i810 and intel are both installed with the xf86-video-intel 2.1.1-2 from [testing]
        vesa < ------------------- currently using vesa as the rest ain't working
    (II) LoadModule: "fglrx"
    (II) Loading /usr/lib/xorg/modules/drivers//fglrx_drv.so
    (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
        compiled for 7.1.0, module version = 8.40.4
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "i810"
    (II) Loading /usr/lib/xorg/modules/drivers//i810_drv.so
    dlopen: /usr/lib/xorg/modules/drivers//i810_drv.so: undefined symbol: xf86CrtcConfigPrivateIndex
    (EE) Failed to load /usr/lib/xorg/modules/drivers//i810_drv.so
    (II) UnloadModule: "i810"
    (EE) Failed to load module "i810" (loader failed, 7)
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    dlopen: /usr/lib/xorg/modules/drivers//intel_drv.so: undefined symbol: xf86CrtcConfigPrivateIndex
    (EE) Failed to load /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) UnloadModule: "intel"
    (EE) Failed to load module "intel" (loader failed, 7)
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.3.0
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 1.1
    When I try to set the intel driver manually by editing xorg.conf in section device, it gives an error saying the driver is not present.
    I tried installing from different sources... but nope, the error still remains.
    My question is: what is changed since the last iso's before the current that suddenly I get this weird message about the undefined symbol and all. Or am I overseeing some stupid thing here...
    Last edited by ibendiben (2007-10-15 11:53:08)

    ok,
    here is the xorg.0.log when I edit the xorg.conf so that in the section 'device' it says 'intel' in stead of 'vesa'.
    X Window System Version 7.2.0
    Release Date: 22 January 2007
    X Protocol Version 11, Revision 0, Release 7.2
    Build Operating System: UNKNOWN
    Current Operating System: Linux wrj-pc 2.6.22-ARCH #1 SMP PREEMPT Wed Sep 26 21:45:47 CEST 2007 x86_64
    Build Date: 08 April 2007
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 15 13:58:56 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) |   |-->Monitor "Monitor0"
    (**) |   |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
        Entry deleted from font path.
        (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
        Entry deleted from font path.
        (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (**) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF,
        /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x69b5c0
    (II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 1.1
        X.Org XInput driver : 0.7
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.1
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2a00 card 103c,30c0 rev 0c class 06,00,00 hdr 00
    (II) PCI: 00:02:0: chip 8086,2a02 card 103c,30c0 rev 0c class 03,00,00 hdr 80
    (II) PCI: 00:02:1: chip 8086,2a03 card 103c,30c0 rev 0c class 03,80,00 hdr 80
    (II) PCI: 00:1a:0: chip 8086,2834 card 103c,30c0 rev 03 class 0c,03,00 hdr 80
    (II) PCI: 00:1a:1: chip 8086,2835 card 103c,30c0 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1a:7: chip 8086,283a card 103c,30c0 rev 03 class 0c,03,20 hdr 00
    (II) PCI: 00:1b:0: chip 8086,284b card 103c,30c0 rev 03 class 04,03,00 hdr 00
    (II) PCI: 00:1c:0: chip 8086,283f card 0000,0000 rev 03 class 06,04,00 hdr 81
    (II) PCI: 00:1c:1: chip 8086,2841 card 0000,0000 rev 03 class 06,04,00 hdr 81
    (II) PCI: 00:1c:2: chip 8086,2843 card 0000,0000 rev 03 class 06,04,00 hdr 81
    (II) PCI: 00:1c:4: chip 8086,2847 card 0000,0000 rev 03 class 06,04,00 hdr 81
    (II) PCI: 00:1d:0: chip 8086,2830 card 103c,30c0 rev 03 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,2831 card 103c,30c0 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,2832 card 103c,30c0 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,2836 card 103c,30c0 rev 03 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev f3 class 06,04,01 hdr 01
    (II) PCI: 00:1f:0: chip 8086,2815 card 103c,30c0 rev 03 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,2850 card 103c,30c0 rev 03 class 01,01,8a hdr 00
    (II) PCI: 00:1f:2: chip 8086,2829 card 103c,30c0 rev 03 class 01,06,01 hdr 00
    (II) PCI: 02:04:0: chip 1180,0476 card 5000,0000 rev b6 class 06,07,00 hdr 82
    (II) PCI: 02:04:1: chip 1180,0832 card 103c,30c0 rev 02 class 0c,00,10 hdr 80
    (II) PCI: 10:00:0: chip 8086,4222 card 103c,135c rev 02 class 02,80,00 hdr 00
    (II) PCI: 18:00:0: chip 14e4,1693 card 103c,30c0 rev 02 class 02,00,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,40), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
        [0] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
        [0] -1    0    0x00000000 - 0xffffffff (0x100000000) MX[b]
    (II) Bus 0 prefetchable memory range:
        [0] -1    0    0x00000000 - 0xffffffff (0x100000000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 8: bridge is at (0:28:0), (0,8,8), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 16: bridge is at (0:28:1), (0,16,16), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 16 non-prefetchable memory range:
        [0] -1    0    0xe4100000 - 0xe41fffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 24: bridge is at (0:28:2), (0,24,24), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 24 non-prefetchable memory range:
        [0] -1    0    0xe4000000 - 0xe40fffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 40: bridge is at (0:28:4), (0,40,40), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 40 I/O range:
        [0] -1    0    0x00002000 - 0x000020ff (0x100) IX[b]
        [1] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
        [2] -1    0    0x00002800 - 0x000028ff (0x100) IX[b]
        [3] -1    0    0x00002c00 - 0x00002cff (0x100) IX[b]
        [4] -1    0    0x00003000 - 0x000030ff (0x100) IX[b]
        [5] -1    0    0x00003400 - 0x000034ff (0x100) IX[b]
        [6] -1    0    0x00003800 - 0x000038ff (0x100) IX[b]
        [7] -1    0    0x00003c00 - 0x00003cff (0x100) IX[b]
    (II) Bus 40 non-prefetchable memory range:
        [0] -1    0    0xe0000000 - 0xe3ffffff (0x4000000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:30:0), (0,2,6), BCTRL: 0x0006 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
        [0] -1    0    0x00005000 - 0x000050ff (0x100) IX[b]
        [1] -1    0    0x00005400 - 0x000054ff (0x100) IX[b]
        [2] -1    0    0x00005800 - 0x000058ff (0x100) IX[b]
        [3] -1    0    0x00005c00 - 0x00005cff (0x100) IX[b]
    (II) Bus 2 non-prefetchable memory range:
        [0] -1    0    0xe4200000 - 0xe45fffff (0x400000) MX[b]
    (II) Bus 2 prefetchable memory range:
        [0] -1    0    0x50000000 - 0x53ffffff (0x4000000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) PCI-to-CardBus bridge:
    (II) Bus 3: bridge is at (2:4:0), (2,3,6), BCTRL: 0x0580 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
        [0] -1    0    0x00005000 - 0x000050ff (0x100) IX[b]
        [1] -1    0    0x00005400 - 0x000054ff (0x100) IX[b]
    (II) Bus 3 prefetchable memory range:
        [0] -1    0    0x50000000 - 0x53ffffff (0x4000000) MX[b]
    (--) PCI:*(0:2:0) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xe4600000/20, 0xd0000000/28, I/O @ 0x4000/3
    (--) PCI: (0:2:1) Intel Corporation Mobile Integrated Graphics Controller rev 12, Mem @ 0xe4700000/20
    (II) Addressable bus resource ranges are
        [0] -1    0    0x00000000 - 0xffffffff (0x100000000) MX[b]
        [1] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
        [0] -1    0    0xe4000000 - 0xe400ffff (0x10000) MX[b]
        [1] -1    0    0xe4100000 - 0xe4100fff (0x1000) MX[b]
        [2] -1    0    0xe4201000 - 0xe42017ff (0x800) MX[b]
        [3] -1    0    0xe4809000 - 0xe48097ff (0x800) MX[b]
        [4] -1    0    0xe4808000 - 0xe48083ff (0x400) MX[b]
        [5] -1    0    0xe4804000 - 0xe4807fff (0x4000) MX[b]
        [6] -1    0    0xe4800000 - 0xe48003ff (0x400) MX[b]
        [7] -1    0    0xe4700000 - 0xe47fffff (0x100000) MX[b](B)
        [8] -1    0    0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
        [9] -1    0    0xe4600000 - 0xe46fffff (0x100000) MX[b](B)
        [10] -1    0    0x00004100 - 0x0000411f (0x20) IX[b]
        [11] -1    0    0x00001574 - 0x00001577 (0x4) IX[b]
        [12] -1    0    0x00001370 - 0x00001377 (0x8) IX[b]
        [13] -1    0    0x000015f4 - 0x000015f7 (0x4) IX[b]
        [14] -1    0    0x000013f0 - 0x000013f7 (0x8) IX[b]
        [15] -1    0    0x000040c0 - 0x000040cf (0x10) IX[b]
        [16] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [17] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [18] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [19] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [20] -1    0    0x000040a0 - 0x000040bf (0x20) IX[b]
        [21] -1    0    0x00004080 - 0x0000409f (0x20) IX[b]
        [22] -1    0    0x00004060 - 0x0000407f (0x20) IX[b]
        [23] -1    0    0x00004040 - 0x0000405f (0x20) IX[b]
        [24] -1    0    0x00004020 - 0x0000403f (0x20) IX[b]
        [25] -1    0    0x00004000 - 0x00004007 (0x8) IX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
        [0] -1    0    0xe4000000 - 0xe400ffff (0x10000) MX[b]
        [1] -1    0    0xe4100000 - 0xe4100fff (0x1000) MX[b]
        [2] -1    0    0xe4201000 - 0xe42017ff (0x800) MX[b]
        [3] -1    0    0xe4809000 - 0xe48097ff (0x800) MX[b]
        [4] -1    0    0xe4808000 - 0xe48083ff (0x400) MX[b]
        [5] -1    0    0xe4804000 - 0xe4807fff (0x4000) MX[b]
        [6] -1    0    0xe4800000 - 0xe48003ff (0x400) MX[b]
        [7] -1    0    0xe4700000 - 0xe47fffff (0x100000) MX[b](B)
        [8] -1    0    0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
        [9] -1    0    0xe4600000 - 0xe46fffff (0x100000) MX[b](B)
        [10] -1    0    0x00004100 - 0x0000411f (0x20) IX[b]
        [11] -1    0    0x00001574 - 0x00001577 (0x4) IX[b]
        [12] -1    0    0x00001370 - 0x00001377 (0x8) IX[b]
        [13] -1    0    0x000015f4 - 0x000015f7 (0x4) IX[b]
        [14] -1    0    0x000013f0 - 0x000013f7 (0x8) IX[b]
        [15] -1    0    0x000040c0 - 0x000040cf (0x10) IX[b]
        [16] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [17] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [18] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [19] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [20] -1    0    0x000040a0 - 0x000040bf (0x20) IX[b]
        [21] -1    0    0x00004080 - 0x0000409f (0x20) IX[b]
        [22] -1    0    0x00004060 - 0x0000407f (0x20) IX[b]
        [23] -1    0    0x00004040 - 0x0000405f (0x20) IX[b]
        [24] -1    0    0x00004020 - 0x0000403f (0x20) IX[b]
        [25] -1    0    0x00004000 - 0x00004007 (0x8) IX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0xe4000000 - 0xe400ffff (0x10000) MX[b]
        [5] -1    0    0xe4100000 - 0xe4100fff (0x1000) MX[b]
        [6] -1    0    0xe4201000 - 0xe42017ff (0x800) MX[b]
        [7] -1    0    0xe4809000 - 0xe48097ff (0x800) MX[b]
        [8] -1    0    0xe4808000 - 0xe48083ff (0x400) MX[b]
        [9] -1    0    0xe4804000 - 0xe4807fff (0x4000) MX[b]
        [10] -1    0    0xe4800000 - 0xe48003ff (0x400) MX[b]
        [11] -1    0    0xe4700000 - 0xe47fffff (0x100000) MX[b](B)
        [12] -1    0    0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
        [13] -1    0    0xe4600000 - 0xe46fffff (0x100000) MX[b](B)
        [14] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [15] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
        [16] -1    0    0x00004100 - 0x0000411f (0x20) IX[b]
        [17] -1    0    0x00001574 - 0x00001577 (0x4) IX[b]
        [18] -1    0    0x00001370 - 0x00001377 (0x8) IX[b]
        [19] -1    0    0x000015f4 - 0x000015f7 (0x4) IX[b]
        [20] -1    0    0x000013f0 - 0x000013f7 (0x8) IX[b]
        [21] -1    0    0x000040c0 - 0x000040cf (0x10) IX[b]
        [22] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [23] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [24] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
        [25] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [26] -1    0    0x000040a0 - 0x000040bf (0x20) IX[b]
        [27] -1    0    0x00004080 - 0x0000409f (0x20) IX[b]
        [28] -1    0    0x00004060 - 0x0000407f (0x20) IX[b]
        [29] -1    0    0x00004040 - 0x0000405f (0x20) IX[b]
        [30] -1    0    0x00004020 - 0x0000403f (0x20) IX[b]
        [31] -1    0    0x00004000 - 0x00004007 (0x8) IX[b](B)
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.13.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 7.2.0, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.0.2
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    dlopen: /usr/lib/xorg/modules/drivers//intel_drv.so: undefined symbol: xf86CrtcConfigPrivateIndex
    (EE) Failed to load /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) UnloadModule: "intel"
    (EE) Failed to load module "intel" (loader failed, 7)
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.1.1
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 1.1.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.7
    (EE) No drivers available.
    Fatal server error:
    no screens found
    Maibe someone with more experience can look trough the errors and give me some advise on this .

  • Why does xf86-video-intel conflicts xf86-video-i810?

    Hello,
    I have a question. Why conflicts xf86-video-intel the xf86-video-i810 driver? Yes I know that -intel is the follow-up, but are there also another (technical) reasons? The problem is that -intel doesn't work very good for me, but sometimes I need it to get a external monitor working. If both are installed it would be no problem to switch it in the xorg.conf, but installing around everytime is a bit annoying.
    I just wanted to ask why this is so and if this could be changed
    Thanks
    PS: I don't want to start a revolution ;-) and please forgive me if this is a silly question.

    Have a look:
    $ pacman -Ql xf86-video-intel
    xf86-video-intel /usr/
    xf86-video-intel /usr/lib/
    xf86-video-intel /usr/lib/libI810XvMC.so
    xf86-video-intel /usr/lib/libI810XvMC.so.1
    xf86-video-intel /usr/lib/libI810XvMC.so.1.0.0
    xf86-video-intel /usr/lib/xorg/
    xf86-video-intel /usr/lib/xorg/modules/
    xf86-video-intel /usr/lib/xorg/modules/dri/
    xf86-video-intel /usr/lib/xorg/modules/dri/i810_dri.so
    xf86-video-intel /usr/lib/xorg/modules/dri/i915_dri.so
    xf86-video-intel /usr/lib/xorg/modules/dri/i915tex_dri.so
    xf86-video-intel /usr/lib/xorg/modules/dri/i965_dri.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/
    xf86-video-intel /usr/lib/xorg/modules/drivers/ch7017.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/ch7xxx.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/i810_drv.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/intel_drv.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/ivch.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/sil164.so
    xf86-video-intel /usr/lib/xorg/modules/drivers/tfp410.so
    xf86-video-intel /usr/share/
    xf86-video-intel /usr/share/man/
    xf86-video-intel /usr/share/man/man4/
    xf86-video-intel /usr/share/man/man4/i810.4.gz
    xf86-video-intel /usr/share/man/man4/intel.4.gz
    $ pacman -Ql xf86-video-i810
    xf86-video-i810 /usr/
    xf86-video-i810 /usr/lib/
    xf86-video-i810 /usr/lib/libI810XvMC.so
    xf86-video-i810 /usr/lib/libI810XvMC.so.1
    xf86-video-i810 /usr/lib/libI810XvMC.so.1.0.0
    xf86-video-i810 /usr/lib/xorg/
    xf86-video-i810 /usr/lib/xorg/modules/
    xf86-video-i810 /usr/lib/xorg/modules/dri/
    xf86-video-i810 /usr/lib/xorg/modules/dri/i810_dri.so
    xf86-video-i810 /usr/lib/xorg/modules/dri/i915_dri.so
    xf86-video-i810 /usr/lib/xorg/modules/dri/i915tex_dri.so
    xf86-video-i810 /usr/lib/xorg/modules/dri/i965_dri.so
    xf86-video-i810 /usr/lib/xorg/modules/drivers/
    xf86-video-i810 /usr/lib/xorg/modules/drivers/i810_drv.so
    xf86-video-i810 /usr/share/
    xf86-video-i810 /usr/share/man/
    xf86-video-i810 /usr/share/man/man4/
    xf86-video-i810 /usr/share/man/man4/i810.4.gz
    --> they can't coexist in the filesystem because of the file conflicts.

  • Some problems with 3D with xorg 1.9.2-1 and xf86-video-intel 2.12.0-3

    I have some problems with the upgrade to xorg 1.9.1-1 and xf86-video-intel 2.12.0-3. Glxgears does not run smoothly at all and I got 15-20 fps (instead of the normal 60 because intel should sync with the V refresh rate). Very curiously, these problems disapear if I move the mouse cursor somewhere in the screen. Then glxgears run smooth and I have indeed the expected 60 fps
    There are no error messages and glxinfo say that 3D is indeed enabled.
    Xorg log file:
    [ 358.899] _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
    [ 358.899] _XSERVTransOpen: transport open failed for inet6/myhost:0
    [ 358.899] _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
    [ 358.900]
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    [ 358.900] X Protocol Version 11, Revision 0
    [ 358.900] Build Operating System: Linux 2.6.35-ARCH i686
    [ 358.900] Current Operating System: Linux myhost 2.6.35-ARCH #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010 i686
    [ 358.900] Kernel command line: root=/dev/disk/by-uuid/e5c72fc3-4e8b-4f5d-9023-12216af63d84 resume=/dev/disk/by-uuid/96f14b75-fb64-4881-863d-124af7c13e2f ro
    [ 358.900] Build Date: 01 November 2010 10:23:07PM
    [ 358.900]
    [ 358.900] Current version of pixman: 0.18.4
    [ 358.900] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 358.900] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 358.900] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Nov 9 10:14:10 2010
    [ 358.900] (==) Using config file: "/etc/X11/xorg.conf"
    [ 358.901] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 358.901] (==) ServerLayout "X.org Configured"
    [ 358.901] (**) |-->Screen "Screen0" (0)
    [ 358.901] (**) | |-->Monitor "Monitor0"
    [ 358.901] (**) | |-->Device "Card0"
    [ 358.901] (**) |-->Input Device "Mouse0"
    [ 358.901] (**) |-->Input Device "touchpad"
    [ 358.901] (**) |-->Input Device "Keyboard0"
    [ 358.901] (**) Option "DontZap" "off"
    [ 358.901] (**) Option "StandbyTime" "5"
    [ 358.901] (**) Option "SuspendTime" "5"
    [ 358.901] (**) Option "OffTime" "5"
    [ 358.901] (**) Option "Xinerama" "on"
    [ 358.901] (**) Option "AutoAddDevices" "off"
    [ 358.901] (**) Not automatically adding devices
    [ 358.901] (==) Automatically enabling devices
    [ 358.902] (**) Xinerama: enabled
    [ 358.902] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 358.902] Entry deleted from font path.
    [ 358.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 358.902] Entry deleted from font path.
    [ 358.902] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 358.902] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 358.902] Entry deleted from font path.
    [ 358.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 358.902] Entry deleted from font path.
    [ 358.902] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 358.902] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/75dpi/
    [ 358.902] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 358.902] (II) Loader magic: 0x81f1f80
    [ 358.902] (II) Module ABI versions:
    [ 358.902] X.Org ANSI C Emulation: 0.4
    [ 358.902] X.Org Video Driver: 8.0
    [ 358.902] X.Org XInput driver : 11.0
    [ 358.902] X.Org Server Extension : 4.0
    [ 358.903] (--) PCI:*(0:0:2:0) 8086:27a2:1584:9916 rev 3, Mem @ 0xb0080000/524288, 0xc0000000/268435456, 0xb0040000/262144, I/O @ 0x00001800/8
    [ 358.903] (--) PCI: (0:0:2:1) 8086:27a6:1584:9916 rev 3, Mem @ 0xb0100000/524288
    [ 358.904] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 358.904] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    [ 358.904] (II) LoadModule: "extmod"
    [ 358.904] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 358.904] (II) Module extmod: vendor="X.Org Foundation"
    [ 358.904] compiled for 1.9.2, module version = 1.0.0
    [ 358.904] Module class: X.Org Server Extension
    [ 358.904] ABI class: X.Org Server Extension, version 4.0
    [ 358.904] (II) Loading extension MIT-SCREEN-SAVER
    [ 358.904] (II) Loading extension XFree86-VidModeExtension
    [ 358.904] (II) Loading extension XFree86-DGA
    [ 358.904] (II) Loading extension DPMS
    [ 358.904] (II) Loading extension XVideo
    [ 358.904] (II) Loading extension XVideo-MotionCompensation
    [ 358.904] (II) Loading extension X-Resource
    [ 358.904] (II) LoadModule: "glx"
    [ 358.904] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 358.905] (II) Module glx: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.0.0
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (==) AIGLX enabled
    [ 358.905] (II) Loading extension GLX
    [ 358.905] (II) LoadModule: "record"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 358.905] (II) Module record: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.13.0
    [ 358.905] Module class: X.Org Server Extension
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (II) Loading extension RECORD
    [ 358.905] (II) LoadModule: "dri2"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 358.905] (II) Module dri2: vendor="X.Org Foundation"
    [ 358.905] compiled for 1.9.2, module version = 1.2.0
    [ 358.905] ABI class: X.Org Server Extension, version 4.0
    [ 358.905] (II) Loading extension DRI2
    [ 358.905] (II) LoadModule: "dbe"
    [ 358.905] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 358.906] (II) Module dbe: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.2, module version = 1.0.0
    [ 358.906] Module class: X.Org Server Extension
    [ 358.906] ABI class: X.Org Server Extension, version 4.0
    [ 358.906] (II) Loading extension DOUBLE-BUFFER
    [ 358.906] (II) LoadModule: "dri"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 358.906] (II) Module dri: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.2, module version = 1.0.0
    [ 358.906] ABI class: X.Org Server Extension, version 4.0
    [ 358.906] (II) Loading extension XFree86-DRI
    [ 358.906] (II) LoadModule: "synaptics"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 358.906] (II) Module synaptics: vendor="X.Org Foundation"
    [ 358.906] compiled for 1.9.0, module version = 1.3.0
    [ 358.906] Module class: X.Org XInput Driver
    [ 358.906] ABI class: X.Org XInput driver, version 11.0
    [ 358.906] (II) LoadModule: "intel"
    [ 358.906] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 358.907] (II) Module intel: vendor="X.Org Foundation"
    [ 358.907] compiled for 1.9.0, module version = 2.12.0
    [ 358.907] Module class: X.Org Video Driver
    [ 358.907] ABI class: X.Org Video Driver, version 8.0
    [ 358.907] (II) LoadModule: "mouse"
    [ 358.907] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 358.907] (II) Module mouse: vendor="X.Org Foundation"
    [ 358.907] compiled for 1.9.0, module version = 1.6.0
    [ 358.907] Module class: X.Org XInput Driver
    [ 358.907] ABI class: X.Org XInput driver, version 11.0
    [ 358.907] (II) LoadModule: "synaptics"
    [ 358.907] (II) Reloading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 358.907] (II) LoadModule: "kbd"
    [ 358.908] (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    [ 358.908] (II) Module kbd: vendor="X.Org Foundation"
    [ 358.908] compiled for 1.9.0, module version = 1.4.0
    [ 358.908] Module class: X.Org XInput Driver
    [ 358.908] ABI class: X.Org XInput driver, version 11.0
    [ 358.908] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 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, Clarkdale, Arrandale
    [ 358.908] (--) using VT number 7
    [ 358.908] (WW) xf86OpenConsole: setpgid failed: Operation not permitted
    [ 358.908] (WW) xf86OpenConsole: setsid failed: Operation not permitted
    [ 358.916] drmOpenDevice: node name is /dev/dri/card0
    [ 358.916] drmOpenDevice: open result is 10, (OK)
    [ 358.916] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 358.916] drmOpenDevice: node name is /dev/dri/card0
    [ 358.916] drmOpenDevice: open result is 10, (OK)
    [ 358.916] drmOpenByBusid: drmOpenMinor returns 10
    [ 358.916] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 358.916] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 358.916] (==) intel(0): RGB weight 888
    [ 358.916] (==) intel(0): Default visual is TrueColor
    [ 358.916] (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    [ 358.916] (--) intel(0): Chipset: "945GM"
    [ 358.916] (==) intel(0): video overlay key set to 0x101fe
    [ 358.953] (II) intel(0): Output VGA1 using monitor section vgamonitor
    [ 358.953] (**) intel(0): Option "Disable" "true"
    [ 359.059] (II) intel(0): Output LVDS1 using monitor section lvdsmonitor
    [ 359.059] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 359.340] (II) intel(0): Output TV1 has no monitor section
    [ 359.380] (II) intel(0): EDID for output VGA1
    [ 359.486] (II) intel(0): EDID for output LVDS1
    [ 359.486] (II) intel(0): Manufacturer: CPT Model: 13a6 Serial#: 0
    [ 359.486] (II) intel(0): Year: 2006 Week: 17
    [ 359.486] (II) intel(0): EDID Version: 1.3
    [ 359.486] (II) intel(0): Digital Display Input
    [ 359.486] (II) intel(0): Max Image Size [cm]: horiz.: 33 vert.: 21
    [ 359.486] (II) intel(0): Gamma: 2.20
    [ 359.486] (II) intel(0): No DPMS capabilities specified
    [ 359.486] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 359.486] (II) intel(0): First detailed timing is preferred mode
    [ 359.486] (II) intel(0): redX: 0.600 redY: 0.340 greenX: 0.309 greenY: 0.559
    [ 359.486] (II) intel(0): blueX: 0.149 blueY: 0.131 whiteX: 0.315 whiteY: 0.329
    [ 359.486] (II) intel(0): Manufacturer's mask: 0
    [ 359.486] (II) intel(0): Supported detailed timing:
    [ 359.486] (II) intel(0): clock: 68.9 MHz Image Size: 331 x 207 mm
    [ 359.486] (II) intel(0): h_active: 1280 h_sync: 1301 h_sync_end 1333 h_blank_end 1408 h_border: 0
    [ 359.486] (II) intel(0): v_active: 800 v_sync: 801 v_sync_end 804 v_blanking: 816 v_border: 0
    [ 359.486] (II) intel(0): Unknown vendor-specific block f
    [ 359.486] (II) intel(0): FD1631154WB4
    [ 359.486] (II) intel(0): /BRZÄêÿ
    [ 359.486] (II) intel(0): EDID (in hex):
    [ 359.486] (II) intel(0): 00ffffffffffff000e14a61300000000
    [ 359.486] (II) intel(0): 11100103802115780a806d99574f8f26
    [ 359.486] (II) intel(0): 21505400000001010101010101010101
    [ 359.486] (II) intel(0): 010101010101ea1a0080502010301520
    [ 359.486] (II) intel(0): 13004bcf100000190000000f00000000
    [ 359.486] (II) intel(0): 0000000000206e050f00000000fe0046
    [ 359.486] (II) intel(0): 44313633313135345742340a000000fe
    [ 359.486] (II) intel(0): 002f42525a81c4eaff01010a2020004f
    [ 359.487] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 359.487] (II) intel(0): Printing probed modes for output LVDS1
    [ 359.487] (II) intel(0): Modeline "1280x800"x60.0 68.90 1280 1301 1333 1408 800 801 804 816 -hsync -vsync (48.9 kHz)
    [ 359.487] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 359.487] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 359.487] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 359.487] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 359.766] (II) intel(0): EDID for output TV1
    [ 359.766] (II) intel(0): Output VGA1 disabled by config file
    [ 359.766] (II) intel(0): Output LVDS1 connected
    [ 359.766] (II) intel(0): Output TV1 disconnected
    [ 359.766] (II) intel(0): Using exact sizes for initial modes
    [ 359.766] (II) intel(0): Output LVDS1 using initial mode 1280x800
    [ 359.766] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 359.766] (II) intel(0): Pageflipping enabled in kernel, but disabled in X
    [ 359.766] (II) intel(0): Don't panic: https://bugzilla.redhat.com/588421
    [ 359.766] (==) intel(0): DPI set to (96, 96)
    [ 359.767] (II) Loading sub module "fb"
    [ 359.767] (II) LoadModule: "fb"
    [ 359.767] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 359.767] (II) Module fb: vendor="X.Org Foundation"
    [ 359.767] compiled for 1.9.2, module version = 1.0.0
    [ 359.767] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 359.767] (==) Depth 24 pixmap format is 32 bpp
    [ 359.767] (II) intel(0): [DRI2] Setup complete
    [ 359.767] (II) intel(0): [DRI2] DRI driver: i915
    [ 359.767] (**) intel(0): Tiling enabled
    [ 359.767] (**) intel(0): SwapBuffers wait enabled
    [ 359.767] (==) intel(0): VideoRam: 262144 KB
    [ 359.767] (II) intel(0): Allocated new frame buffer 1280x800 stride 8192, tiled
    [ 359.767] (II) UXA(0): Driver registered support for the following operations:
    [ 359.767] (II) solid
    [ 359.767] (II) copy
    [ 359.767] (II) composite (RENDER acceleration)
    [ 359.767] (II) put_image
    [ 359.767] (II) get_image
    [ 359.767] (==) intel(0): Backing store disabled
    [ 359.767] (==) intel(0): Silken mouse enabled
    [ 359.767] (II) intel(0): Initializing HW Cursor
    [ 359.803] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 359.804] (==) intel(0): DPMS enabled
    [ 359.805] (==) intel(0): Intel XvMC decoder disabled
    [ 359.805] (II) intel(0): Set up textured video
    [ 359.805] (II) intel(0): Set up overlay video
    [ 359.805] (II) intel(0): direct rendering: DRI2 Enabled
    [ 359.805] (--) RandR disabled
    [ 359.805] (II) Initializing built-in extension Generic Event Extension
    [ 359.805] (II) Initializing built-in extension SHAPE
    [ 359.805] (II) Initializing built-in extension MIT-SHM
    [ 359.805] (II) Initializing built-in extension XInputExtension
    [ 359.805] (II) Initializing built-in extension XTEST
    [ 359.805] (II) Initializing built-in extension BIG-REQUESTS
    [ 359.805] (II) Initializing built-in extension SYNC
    [ 359.805] (II) Initializing built-in extension XKEYBOARD
    [ 359.805] (II) Initializing built-in extension XC-MISC
    [ 359.805] (II) Initializing built-in extension SECURITY
    [ 359.805] (II) Initializing built-in extension XINERAMA
    [ 359.805] (II) Initializing built-in extension XFIXES
    [ 359.805] (II) Initializing built-in extension RENDER
    [ 359.805] (II) Initializing built-in extension RANDR
    [ 359.805] (II) Initializing built-in extension COMPOSITE
    [ 359.805] (II) Initializing built-in extension DAMAGE
    [ 359.821] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 359.821] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 359.821] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 359.821] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 359.821] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 359.821] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    [ 359.821] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 359.822] (II) intel(0): Setting screen physical size to 338 x 211
    [ 360.019] (**) Option "Protocol" "auto"
    [ 360.019] (**) Option "Device" "/dev/input/mice"
    [ 360.019] (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    [ 360.019] (**) Mouse0: Device: "/dev/input/mice"
    [ 360.019] (**) Mouse0: Protocol: "auto"
    [ 360.019] (**) Option "CorePointer"
    [ 360.019] (**) Mouse0: always reports core events
    [ 360.019] (**) Option "Device" "/dev/input/mice"
    [ 360.019] (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    [ 360.019] (**) Option "ZAxisMapping" "4 5 6 7"
    [ 360.019] (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    [ 360.019] (**) Mouse0: Buttons: 11
    [ 360.019] (**) Option "Sensitivity" "0.7"
    [ 360.019] (**) Mouse0: Sensitivity: 0.7
    [ 360.019] (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    [ 360.019] (**) Mouse0: (accel) keeping acceleration scheme 1
    [ 360.019] (**) Mouse0: (accel) acceleration profile 0
    [ 360.019] (**) Mouse0: (accel) acceleration factor: 2.000
    [ 360.019] (**) Mouse0: (accel) acceleration threshold: 4
    [ 360.019] (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    [ 360.311] (II) Mouse0: ps2EnableDataReporting: succeeded
    [ 360.311] (II) Synaptics touchpad driver version 1.3.0
    [ 360.312] (--) touchpad auto-dev sets device to /dev/input/event6
    [ 360.312] (**) Option "Device" "/dev/input/event6"
    [ 360.312] (--) touchpad: x-axis range 1472 - 5472
    [ 360.312] (--) touchpad: y-axis range 1408 - 4448
    [ 360.312] (--) touchpad: pressure range 0 - 255
    [ 360.312] (--) touchpad: finger width range 0 - 0
    [ 360.312] (--) touchpad: buttons: left right double triple
    [ 360.312] (--) touchpad: invalid finger width range. defaulting to 0 - 16
    [ 360.312] (**) Option "TapButton1" "1"
    [ 360.312] (--) touchpad: touchpad found
    [ 360.312] (**) Option "SendCoreEvents"
    [ 360.312] (**) touchpad: always reports core events
    [ 360.312] (II) XINPUT: Adding extended input device "touchpad" (type: TOUCHPAD)
    [ 360.312] (**) touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 360.312] (**) touchpad: MaxSpeed is now 1.75
    [ 360.312] (**) touchpad: AccelFactor is now 0.040
    [ 360.312] (**) touchpad: (accel) keeping acceleration scheme 1
    [ 360.312] (**) touchpad: (accel) acceleration profile 1
    [ 360.312] (**) touchpad: (accel) acceleration factor: 2.000
    [ 360.312] (**) touchpad: (accel) acceleration threshold: 4
    [ 360.312] (--) touchpad: touchpad found
    [ 360.312] (**) Option "CoreKeyboard"
    [ 360.312] (**) Keyboard0: always reports core events
    [ 360.312] (**) Option "Protocol" "standard"
    [ 360.312] (**) Keyboard0: Protocol: standard
    [ 360.312] (**) Option "XkbRules" "base"
    [ 360.312] (**) Keyboard0: XkbRules: "base"
    [ 360.312] (**) Option "XkbModel" "pc105"
    [ 360.312] (**) Keyboard0: XkbModel: "pc105"
    [ 360.312] (**) Option "XkbLayout" "fr"
    [ 360.313] (**) Keyboard0: XkbLayout: "fr"
    [ 360.313] (**) Option "XkbVariant" "oss"
    [ 360.313] (**) Keyboard0: XkbVariant: "oss"
    [ 360.313] (**) Option "XkbOptions" "terminate:ctrl_alt_bksp"
    [ 360.313] (**) Keyboard0: XkbOptions: "terminate:ctrl_alt_bksp"
    [ 360.313] (**) Option "CustomKeycodes" "off"
    [ 360.313] (**) Keyboard0: CustomKeycodes disabled
    [ 360.313] (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    [ 360.372] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 360.372] (II) AutoAddDevices is off - not adding device.
    [ 360.373] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 360.373] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.376] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 360.376] (II) AutoAddDevices is off - not adding device.
    [ 360.377] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 360.377] (II) AutoAddDevices is off - not adding device.
    [ 360.379] (II) config/udev: Adding input device MLK Trust Wireless Mouse (/dev/input/event9)
    [ 360.379] (II) AutoAddDevices is off - not adding device.
    [ 360.380] (II) config/udev: Adding input device MLK Trust Wireless Mouse (/dev/input/mouse1)
    [ 360.380] (II) AutoAddDevices is off - not adding device.
    [ 360.382] (II) config/udev: Adding input device Western Digital External HDD (/dev/input/event8)
    [ 360.382] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 360.385] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 360.385] (II) AutoAddDevices is off - not adding device.
    [ 362.484] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 368.334] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 368.334] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 368.503] (II) intel(0): EDID vendor "CPT", prod id 5030
    [ 368.503] (II) intel(0): Printing DDC gathered Modelines:
    [ 368.503] (II) intel(0): Modeline "1280x800"x0.0 68.90 1280 1301 1333 1408 800 801 804 816 -hsync -vsync (48.9 kHz)
    [ 369.076] (II) Mouse0: ps2EnableDataReporting: succeeded
    [ 369.076] (--) touchpad: touchpad found
    [ 441.972] (II) 3rd Button detected: disabling emulate3Button
    output of glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_INTEL_swap_event
    client glx vendor string: Mesa Project and SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap,
    GLX_INTEL_swap_event
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap,
    GLX_INTEL_swap_event
    OpenGL vendor string: Tungsten Graphics, Inc
    OpenGL renderer string: Mesa DRI Intel(R) 945GM GEM 20100328 2010Q1 x86/MMX/SSE2
    OpenGL version string: 1.4 Mesa 7.8.3
    OpenGL extensions:
    GL_ARB_copy_buffer, GL_ARB_depth_texture, GL_ARB_draw_buffers,
    GL_ARB_draw_elements_base_vertex, GL_ARB_fragment_program,
    GL_ARB_half_float_pixel, GL_ARB_map_buffer_range, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_pixel_buffer_object, GL_ARB_point_parameters,
    GL_ARB_point_sprite, GL_ARB_provoking_vertex, GL_ARB_shader_objects,
    GL_ARB_shading_language_100, GL_ARB_shading_language_120, GL_ARB_shadow,
    GL_ARB_sync, GL_ARB_texture_border_clamp, GL_ARB_texture_compression,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_vertex_array_object,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract,
    GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_copy_texture,
    GL_EXT_draw_range_elements, GL_EXT_framebuffer_blit,
    GL_EXT_framebuffer_object, GL_EXT_fog_coord,
    GL_EXT_gpu_program_parameters, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_polygon_offset, GL_EXT_provoking_vertex, GL_EXT_rescale_normal,
    GL_EXT_secondary_color, GL_EXT_separate_specular_color,
    GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap,
    GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D,
    GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
    GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic,
    GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle,
    GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1,
    GL_APPLE_client_storage, GL_APPLE_packed_pixels,
    GL_APPLE_vertex_array_object, GL_APPLE_object_purgeable,
    GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3,
    GL_ATI_separate_stencil, GL_IBM_multimode_draw_arrays,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat,
    GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
    GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent,
    GL_NV_packed_depth_stencil, GL_NV_texture_env_combine4,
    GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program,
    GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays
    32 GLX Visuals
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x8e 24 tc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x8f 24 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x90 24 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x91 24 tc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x92 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x93 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x94 24 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x95 24 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x96 24 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x97 24 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x98 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x99 24 tc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x9a 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x9b 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x9c 24 dc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9d 24 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9e 24 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x9f 24 dc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa0 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa1 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa2 24 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa3 24 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa4 24 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0xa5 24 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xa6 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xa7 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0xa8 24 dc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0xa9 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0xaa 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x5d 32 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    48 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x5e 0 tc 0 16 0 r . . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x5f 0 tc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x60 0 tc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x61 0 tc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x62 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x63 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x64 0 tc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x65 0 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x66 0 tc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x67 0 tc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x68 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x69 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x6a 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6b 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6c 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x6d 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x6e 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x6f 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x70 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x71 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x72 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x73 0 tc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x74 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x75 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x76 0 dc 0 16 0 r . . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x77 0 dc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x78 0 dc 0 16 0 r y . 5 6 5 0 0 0 0 0 0 0 0 0 0 None
    0x79 0 dc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7a 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7b 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x7c 0 dc 0 24 0 r . . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7d 0 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7e 0 dc 0 24 0 r y . 8 8 8 0 0 0 0 0 0 0 0 0 0 None
    0x7f 0 dc 0 24 0 r . . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x80 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x81 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x82 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x83 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x84 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None
    0x85 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x86 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x87 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x88 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x89 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x8a 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 0 0 0 0 0 0 None
    0x8b 0 dc 0 24 0 r y . 8 8 8 0 0 24 8 16 16 16 0 0 0 Slow
    0x8c 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x8d 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow

    Gusar wrote:
    *sigh*
    Do you have problems with anything that's *not* glxgears?
    I have indeed not seen other problems. Presently the only other software that I believe use openGL that I use is googleearth; which run fine. Could it be a problem with glxgears?

  • Intel i965 on 2.6.28 kernel --- results with xf86-video-intel 2.5.99.

    I compiled and booted into 2.6.28 and switched xorg.conf back to
    EXA.
    Ok, it worked a little bit better but it did not WOW me.  So, I compiled by hand the
    latest intel driver and DAMN! very smooth in Compiz... "lightening fast"  I don't have
    any 3d games to compare but, some "artifacts" that were happening on startup of the
    AWN dock are GONE.   I can play a movie trailer and drag it around with wobbly windows
    and it looks awesome.
    Here's what I did.... 
    use./autogen.sh --prefix=/usr  or ./configure --prefix=/usr where appropriate.
    [1] pthread-stubs
    git clone git://anongit.freedesktop.org/xcb/pthread-stubs
    ./autogen.sh --prefix=/usr
    [2] xf86driproto
    git clone git://anongit.freedesktop.org/xorg/proto/xf86driproto
    ./autogen.sh --prefix=/usr
    make install (its just headers so there's nothing to compile)
    [3] Dec 22 version of libdrm (the latest)
    http://dri.freedesktop.org/libdrm/libdrm-2.4.3.tar.bz2
    [4] Intel driver
    http://xorg.freedesktop.org/archive/ind … 9.1.tar.gz
    ./configure --prefix=/usr
    Transitions everything now in Compiz is smooth, smooth, smooth....!!!!!!
    Enjoy!!!!
    [ANNOUNCE] xf86-video-intel 2.5.99.1     Mon Dec 15 17:43:30 PST 2008
    http://lists.freedesktop.org/archives/x … 00714.html

    For those who'd like some PKGBUILDs in order of compilation and install, these are what I used and it works quite well.
    libpthread-stubs
    pkgname=libpthread-stubs
    pkgver=0.1
    pkgrel=1
    pkgdesc="stubs missing from libc for standard pthread functions"
    arch=('i686' 'x86_64')
    url="http://xcb.freedesktop.org/"
    license=('MIT')
    source=(http://xcb.freedesktop.org/dist/$pkgname-$pkgver.tar.bz2)
    md5sums=('774eabaf33440d534efe108ef9130a7d')
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR="$pkgdir/" install
    libdrm
    pkgname=libdrm
    pkgver=2.4.3
    pkgrel=1
    pkgdesc="Userspace interface to kernel DRM services"
    arch=(i686 x86_64)
    depends=('glibc' 'libpthread-stubs')
    options=('!libtool' 'force')
    url="http://dri.freedesktop.org/"
    source=(http://dri.freedesktop.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure --prefix=/usr || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    libxcb
    pkgname=libxcb
    pkgver=1.1.93
    pkgrel=1
    pkgdesc="X11 client-side library"
    arch=(i686 x86_64)
    url="http://xcb.freedesktop.org/"
    depends=('xcb-proto>=1.2' 'libxdmcp' 'libxau')
    makedepends=('pkgconfig' 'libxslt' 'python')
    options=('!libtool')
    license=('custom')
    source=(${url}/dist/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    libtoolize --force --copy || return 1
    aclocal || return 1
    autoconf || return 1
    automake --add-missing || return 1
    ./configure --prefix=/usr --enable-xinput || return 1
    make || return 1
    make DESTDIR=${pkgdir} install || return 1
    install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
    install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
    libx11
    pkgname=libx11
    pkgver=1.1.99.2
    pkgrel=1
    pkgdesc="X11 client-side library"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    depends=('libxcb>=1.1.90.1' 'kbproto>=1.0.3')
    makedepends=('xproto>=7.0.13' 'xextproto>=7.0.3' 'xf86bigfontproto>=1.1.2' 'xtrans>=1.2.1' 'kbproto>=1.0.3' 'inputproto>=1.4.4' 'xorg-util-macros')
    options=('!libtool')
    license=('custom:XFREE86')
    source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2
    xorg.sh)
    md5sums=()
    build() {
    cd ${srcdir}/libX11-${pkgver}
    libtoolize --force --copy || return 1
    aclocal || return 1
    autoconf || return 1
    automake --add-missing || return 1
    ./configure --prefix=/usr \
    --with-xcb || return 1
    make || return 1
    make DESTDIR=${pkgdir} install || return 1
    install -m755 -d ${pkgdir}/etc/profile.d
    install -m755 ${srcdir}/xorg.sh \
    ${pkgdir}/etc/profile.d/ || return 1
    install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
    install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
    xorg.sh
    export XDG_DATA_HOME=$HOME/.local/share
    export XDG_CONFIG_HOME=$HOME/.config
    export XDG_CACHE_HOME=$HOME/.cache
    if [ -z $XDG_DATA_DIRS ]; then
    export XDG_DATA_DIRS=/usr/share:/usr/local/share
    else
    export XDG_DATA_DIRS=/usr/share:/usr/local/share:$XDG_DATA_DIRS
    fi
    if [ -z $XDG_CONFIG_DIRS ]; then
    export XDG_CONFIG_DIRS=/etc/xdg
    else
    export XDG_CONFIG_DIRS=/etc/xdg:$XDG_CONFIG_DIRS
    fi
    dri2proto-git
    pkgname=dri2proto-git
    pkgver=20081228
    pkgrel=1
    pkgdesc="X11 OpenGL extension wire protocol"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    license=('custom')
    replaces=('dri2proto')
    provides=('dri2proto=1.99.3.99' 'dri2proto-git')
    conflicts=('dri2proto')
    groups=('xorg')
    source=()
    md5sums=()
    _gitroot="git://anongit.freedesktop.org/xorg/proto/dri2proto"
    _gitname="dri2proto"
    build() {
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd $startdir/src/$_gitname
    sh autogen.sh --prefix=/usr
    make || return 1
    make DESTDIR=${startdir}/pkg install || return 1
    xf86driproto-git
    pkgname=xf86driproto-git
    pkgver=20081228
    pkgrel=1
    pkgdesc="Xf86driproto"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    license=('custom')
    replaces=('xf86driproto')
    provides=('xf86driproto=2.0.4.99' 'xf86driproto-git')
    conflicts=('xf86driproto')
    groups=('xorg')
    source=()
    md5sums=()
    _gitroot="git://anongit.freedesktop.org/xorg/proto/xf86driproto"
    _gitname="xf86driproto"
    build() {
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd $startdir/src/$_gitname
    sh autogen.sh --prefix=/usr
    make || return 1
    make DESTDIR=${startdir}/pkg install || return 1
    libgl-git
    pkgname=libgl-git
    pkgver=20081224
    pkgrel=1
    pkgdesc="Mesa DRI OpenGL library and drivers from GIT repository"
    arch=(i686 x86_64)
    license=('custom')
    url="http://mesa3d.sourceforge.net"
    depends=('libxxf86vm' 'libdrm>=2.4.3' 'libx11>=1.1.99.2')
    makedepends=('imake' 'glproto' 'git')
    provides=('libgl=7.2.99')
    conflicts=('libgl')
    source=()
    md5sums=()
    _gitroot="git://anongit.freedesktop.org/git/mesa/mesa"
    _gitname="mesa"
    build() {
    cd ${startdir}/src/
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd $startdir/src/
    cp -r ${startdir}/src/$_gitname ${startdir}/src/$_gitname-build || return 1
    cd $startdir/src/$_gitname-build/
    CONFIG="linux-dri-x86"
    if [ "${CARCH}" = "x86_64" ]; then
    CONFIG="linux-dri-x86-64"
    sed -i -e "s/lib64/lib/g" ${startdir}/src/$_gitname-build/configs/${CONFIG}
    fi
    echo "EXTRA_LIB_PATH =" >> configs/${CONFIG}
    echo "OPT_FLAGS = ${CFLAGS}" >> configs/${CONFIG}
    echo "SRC_DIRS = glx/x11 mesa" >> configs/${CONFIG}
    rm -f include/GL/glut*h
    echo "USING_EGL = 0" >> configs/${CONFIG}
    echo "PROGRAM_DIRS =" >> configs/${CONFIG}
    echo "MKDEP = makedepend" >> configs/${CONFIG}
    echo "DRI_DIRS =" >> configs/${CONFIG}
    echo "DRI_DRIVER_SEARCH_DIR = /usr/lib/xorg/modules/dri" >> configs/${CONFIG}
    echo "ARCH_FLAGS += -DGLX_USE_TLS" >> configs/${CONFIG}
    echo "X11_INCLUDES = `pkg-config --cflags-only-I x11`" >> configs/${CONFIG}
    #echo "DEFINES += -DUSE_XCB" >> configs/${CONFIG}
    #echo "X11_INCLUDES += `pkg-config --cflags-only-I xcb` `pkg-config --cflags-only-I x11-xcb` `pkg-config --cflags-only-I xcb-glx`" >> configs/${CONFIG}
    #echo "GL_LIB_DEPS += `pkg-config --libs xcb` `pkg-config --libs x11-xcb` `pkg-config --libs xcb-glx`" >> configs/${CONFIG}
    make ${CONFIG} || return 1
    mkdir -p ${startdir}/pkg/usr
    make INSTALL_DIR=${startdir}/pkg/usr install
    rm -rf ${startdir}/pkg/usr/include
    mkdir -p ${startdir}/pkg/usr/lib/xorg/modules/extensions
    cd ${startdir}/pkg/usr/lib/xorg/modules/extensions
    ln -sf libGLcore.xorg libGLcore.so
    ln -sf libglx.xorg libglx.so
    rm -r $startdir/src/$_gitname-build
    mesa-git
    pkgname=mesa-git
    pkgver=20081224
    pkgrel=1
    pkgdesc="Mesa OpenGL Library from GIT repository"
    url="http://www.mesa3d.org"
    license=""
    arch=(x86_64 i686)
    depends=('libgl>=7.2.99' 'glproto' 'gcc' 'libxt')
    makedepends=('imake' 'git')
    conflicts=('mesa-apps' 'mesa')
    replaces=('mesa-apps' 'mesa')
    provides=('mesa=7.2.99')
    backup=()
    install=
    source=()
    md5sums=()
    _gitroot="git://anongit.freedesktop.org/git/mesa/mesa"
    _gitname="mesa"
    build() {
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd $startdir/src
    cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
    cd $startdir/src/$_gitname-build
    # Any patches you may want to add go here
    cd $startdir/src/$_gitname-build
    CONFIG="linux-dri-x86"
    if [ "${CARCH}" = "x86_64" ]; then
    CONFIG="linux-dri-x86-64"
    sed -i -e "s/lib64/lib/g" ${startdir}/src/$_gitname-build/configs/${CONFIG}
    fi
    echo "EXTRA_LIB_PATH =" >> configs/${CONFIG}
    echo "OPT_FLAGS = ${CFLAGS}" >> configs/${CONFIG}
    echo "SRC_DIRS = glx/x11 glu glw" >> configs/${CONFIG}
    rm -f include/GL/glut*h
    echo "USING_EGL = 0" >> configs/${CONFIG}
    echo "PROGRAM_DIRS =" >> configs/${CONFIG}
    echo "MKDEP = makedepend" >> configs/${CONFIG}
    echo "DRI_DIRS =" >> configs/${CONFIG}
    echo "DRI_DRIVER_SEARCH_DIR = /usr/lib/xorg/modules/dri" >> configs/${CONFIG}
    echo "ARCH_FLAGS += -DGLX_USE_TLS" >> configs/${CONFIG}
    echo "X11_INCLUDES = `pkg-config --cflags-only-I x11`" >> configs/${CONFIG}
    make ${CONFIG} || return 1
    mkdir -p ${startdir}/pkg/usr
    make INSTALL_DIR=${startdir}/pkg/usr install
    install -m644 include/GL/*.h ${startdir}/pkg/usr/include/GL/
    cp -r include/GL/* ${startdir}/pkg/usr/include/GL/
    rm -f ${startdir}/pkg/usr/lib/libGL.so*
    cd progs/xdemos
    make glxinfo glxgears
    mkdir -p ${startdir}/pkg/usr/bin
    install -m755 glxinfo glxgears ${startdir}/pkg/usr/bin/
    cd ${startdir}/src/gl-manpages-1.0.1
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=${startdir}/pkg install
    rm -r $startdir/pkg/usr/lib/xorg/
    rm -r $startdir/src/$_gitname-build
    intel-dri-git
    pkgname=intel-dri-git
    pkgver=20081224
    pkgrel=1
    pkgdesc="Mesa DRI drivers for Intel chipsets"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    depends=('libdrm>=2.4.3' 'mesa>=7.2.99' 'expat>=2.0')
    makedepends=('libdrm>=2.4.3' 'imake' 'mesa>=7.2.99' 'glproto>=1.4.9')
    options=('!libtool')
    conflicts=('intel-dri')
    provides=('intel-dri=7.2.99')
    source=()
    md5sums=()
    license=('custom')
    _gitroot="git://anongit.freedesktop.org/git/mesa/mesa"
    _gitname="mesa"
    build() {
    cd ${startdir}/src/
    msg "Connecting to git.freedesktop.org GIT server...."
    if [ -d $startdir/src/$_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd $startdir/src/
    cp -r ${startdir}/src/$_gitname ${startdir}/src/$_gitname-build || return 1
    cd $startdir/src/$_gitname-build/
    CONFIG="linux-dri-x86"
    if [ "${CARCH}" = "x86_64" ]; then
    CONFIG="linux-dri-x86-64"
    sed -i -e "s/lib64/lib/g" ${startdir}/src/$_gitname-build/configs/${CONFIG}
    fi
    echo "EXTRA_LIB_PATH =" >> configs/${CONFIG}
    echo "OPT_FLAGS = ${CFLAGS} -fno-strict-aliasing" >> configs/${CONFIG}
    echo "SRC_DIRS = glx/x11 mesa" >> configs/${CONFIG}
    rm -f include/GL/glut*h
    echo "USING_EGL = 0" >> configs/${CONFIG}
    echo "PROGRAM_DIRS =" >> configs/${CONFIG}
    echo "MKDEP = makedepend" >> configs/${CONFIG}
    echo "DRI_DIRS = i810 i915 i915tex i965" >> configs/${CONFIG}
    echo "DRI_DRIVER_SEARCH_DIR = /usr/lib/xorg/modules/dri" >> configs/${CONFIG}
    echo "DRI_DRIVER_INSTALL_DIR = /usr/lib/xorg/modules/dri" >> configs/${CONFIG}
    echo "ARCH_FLAGS += -DGLX_USE_TLS" >> configs/${CONFIG}
    echo "X11_INCLUDES = `pkg-config --cflags-only-I x11`" >> configs/${CONFIG}
    make realclean
    make ${CONFIG} || return 1
    mkdir -p ${startdir}/pkg/usr
    cd drivers/dri
    make DESTDIR=${startdir}/pkg install || return 1
    rm -rf ${startdir}/pkg/usr/local
    inputproto
    pkgname=inputproto
    pkgver=1.5.0
    pkgrel=1
    pkgdesc="X11 Input extension wire protocol"
    arch=(i686 x86_64)
    license=('custom')
    url="http://xorg.freedesktop.org/"
    source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    ./configure --prefix=/usr || return 1
    make || return 1
    make DESTDIR=${startdir}/pkg install || return 1
    install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
    install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
    pixman
    pkgname=pixman
    pkgver=0.13.2
    pkgrel=1
    pkgdesc="Pixman library"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org"
    license=()
    depends=('glibc')
    options=('!libtool')
    source=(http://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure --prefix=/usr --disable-static || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    randrproto
    pkgname=randrproto
    pkgver=1.2.99.3
    pkgrel=1
    pkgdesc="X11 RandR extension wire protocol"
    arch=('i686' 'x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org/"
    source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    ./configure --prefix=/usr || return 1
    make || return 1
    make DESTDIR=${pkgdir} install || return 1
    install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
    install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1
    xorg-server
    pkgname=xorg-server
    pkgver=1.5.99.901
    pkgrel=1
    pkgdesc="X.Org X servers"
    arch=('i686' 'x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org"
    depends=('libx11>=1.1.99.2' 'libxkbui>=1.0.2' 'libgl' 'libxfont>=1.3.3' 'openssl>=0.9.8h' 'libxxf86misc>=1.0.1' 'libpciaccess>=0.10.5' 'libxv>=1.0.4' 'libxaw>=1.0.4' 'pixman>=0.11.10' 'hal>=0.5.11' 'xcursor-themes' 'xkeyboard-config>=1.3' 'xorg-server-utils' 'xorg-utils' 'xorg-fonts-misc' 'xbitmaps' 'libdrm>=2.3.1' 'diffutils' 'xf86-input-evdev')
    makedepends=('glproto>=1.4.9' 'xf86driproto>=2.0.4' 'mesa>=7.2.99' 'randrproto>=1.2.99.3' 'renderproto>=0.9.3' 'scrnsaverproto>=1.1.0' 'fontsproto>=2.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'trapproto>=3.4.3' 'resourceproto>=1.0.2' 'xineramaproto>=1.1.2' 'evieext>=1.0.2' 'libxkbfile>=1.0.5' 'libxmu>=1.0.4' 'libxpm>=3.5.7' 'libxxf86dga>=1.0.2' 'inputproto>=1.4.4' 'xcmiscproto>=1.1.2' 'bigreqsproto' 'libdrm=2.4.3' 'xtrans' 'pixman>=0.13.2' 'inputproto>=1.5.0')
    options=('!libtool')
    provides=('x-server')
    groups=('xorg')
    install=xorg-server.install
    source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    # Fix dbus config path
    sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    ./configure --prefix=/usr \
    --enable-ipv6 \
    --enable-dri \
    --disable-dmx \
    --enable-xvfb \
    --enable-xnest \
    --enable-composite \
    --enable-xcsecurity \
    --enable-xorg \
    --enable-xtrap \
    --enable-xevie \
    --enable-xephyr \
    --enable-glx-tls \
    --enable-xorgcfg \
    --enable-kdrive \
    --enable-install-setuid \
    --enable-config-hal \
    --enable-config-dbus \
    --disable-xfbdev \
    --disable-xfake \
    --disable-xsdl \
    --disable-kdrive-vesa \
    --disable-dri2 \
    --disable-xprint \
    --disable-static \
    --sysconfdir=/etc/X11 \
    --localstatedir=/var \
    --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1 \
    --with-xkb-path=/usr/share/X11/xkb \
    --with-xkb-output=/var/lib/xkb \
    --with-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf "${pkgdir}/var/log" || return 1
    install -m755 -d "${pkgdir}/etc/X11" || return 1
    install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    # No longer needed, but as nvidia-utils mangles these files,
    # keep them like this so they can be restored
    mv "${pkgdir}/usr/lib/xorg/modules/libwfb.so" \
    "${pkgdir}/usr/lib/xorg/modules/libwfb.so.1.4" || return 1
    # Needed for non-mesa drivers, libgl will restore it
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    mv "${pkgdir}/usr/lib/xorg/modules/extensions/libdri.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libdri.xorg" || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    xorg-server.install
    post_install() {
    rm -f usr/lib/xorg/modules/libwfb.so
    ln -sf libwfb.so.1.4 usr/lib/xorg/modules/libwfb.so
    cmp usr/lib/xorg/modules/extensions/libdri.so usr/lib/xorg/modules/extensions/libglx.xorg >/dev/null 2>&1 && rm -f usr/lib/xorg/modules/extensions/libdri.so
    # If the symlink is dead or non-existent, remove it and make a new one
    if [ ! -e usr/lib/xorg/modules/extensions/libdri.so ]; then
    rm -f usr/lib/xorg/modules/extensions/libdri.so
    ln -sf libdri.xorg usr/lib/xorg/modules/extensions/libdri.so
    fi
    post_upgrade() {
    if [ "`vercmp $2 1.4.99.906`" -lt 0 ]; then
    cat << _EOF
    Input device handling has changed in xorg-server 1.5.
    Please read http://wiki.archlinux.org/index.php/Xorg_input_hotplugging.
    _EOF
    fi
    post_install
    post_remove() {
    rm -f /usr/lib/xorg/modules/libwfb.so
    # If the symlink is dead, remove it
    if [ ! -e usr/lib/xorg/modules/extensions/libdri.so ]; then
    rm -f usr/lib/xorg/modules/extensions/libdri.so
    fi
    xf86-video-intel
    pkgname=xf86-video-intel
    pkgver=2.5.99.2
    pkgrel=1
    pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    depends=('intel-dri>=7.2.99' 'libpciaccess>=0.10.5' 'libdrm>=2.4.3')
    makedepends=('pkgconfig' 'xorg-server>=1.5.99.3' 'xf86driproto>=2.0.4' 'glproto>=1.4.9' 'mesa>=7.2.99' 'libdrm=2.4.3')
    conflicts=('xorg-server<1.5.99.3' 'xf86-video-i810')
    replaces=('xf86-video-i810')
    options=('!libtool' 'force')
    groups=('xorg-video-drivers')
    source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
    md5sums=()
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure --prefix=/usr \
    --enable-dri || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    xf86-input-evdev
    pkgname=xf86-input-evdev
    pkgver=2.1.0
    pkgrel=1
    pkgdesc="X.org evdev input driver"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    license=('custom')
    depends=('glibc')
    makedepends=('pkgconfig' 'xorg-server>=1.5.99.3' 'inputproto>=1.5.0' 'randrproto>=1.2.99.3')
    options=('!libtool')
    groups=('xorg-input-drivers')
    source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
    md5sums=('a6070ead29b2d81b5b386a96df2661b8')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure --prefix=/usr || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    Last edited by mutlu_inek (2009-01-15 02:45:22)

  • Xf86-video-intel not not working with intel 82852/855GM graphics card

    I am runing arch linux on a toshiba satilite r15 s829 and have the xf86-video-intel driver installed but Xorg does mot seem to be able to use it with my intel graphics card.
    output of lspci
    00:00.0 Host bridge: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:00.1 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:00.3 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
    00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 83)
    00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev 03)
    00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
    00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03)
    01:05.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
    01:08.0 Ethernet controller: Intel Corporation 82801DB PRO/100 VE (MOB) Ethernet Controller (rev 83)
    01:0b.0 CardBus bridge: Texas Instruments PCIxx21/x515 Cardbus Controller
    01:0b.2 FireWire (IEEE 1394): Texas Instruments OHCI Compliant IEEE 1394 Host Controller
    01:0b.4 SD Host controller: Texas Instruments PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller
    xorg onfig file: 10-monitor.conf
    Section "Monitor"
        Identifier    "Monitor0"
    EndSection
    Section "Device"
        Identifier    "Card0"
        Driver        "intel"
        #Option        "RandRRotation" "true"
        VendorName  "Intel Corp."
        BoardName   "82852/855GM Integrated Graphics Device"
    EndSection
    Section "Screen"
        Identifier    "Screen0"  #Collapse Monitor and Device section to Screen section
        Device        "Card0"
        Monitor       "Monitor0"
        DefaultDepth  24 #Choose the depth (16||24)
        #Option        "RandRRotation" "true"
        SubSection "Display"
                   Depth     16
                   Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                   Depth     24
                   Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                   Depth     32
                   Modes "1024x768" "800x600" "640x480"
        EndSubSection
    EndSection
    Xorg log file: Xorg.0.log
    [  2900.308]
    X.Org X Server 1.9.4
    Release Date: 2011-02-04
    [  2900.308] X Protocol Version 11, Revision 0
    [  2900.308] Build Operating System: Linux 2.6.37-ARCH i686
    [  2900.308] Current Operating System: Linux dragonL 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 25 09:07:57 UTC 2011 i686
    [  2900.309] Kernel command line: BOOT_IMAGE=(hd0,msdos1)//boot/vmlinuz26 root=/dev/disk/by-uuid/0cfdcd8b-eae7-4dbd-8dd6-0ff955089587 rootfstype=ext2 ro nomodeset add_efi_memmap
    [  2900.309] Build Date: 04 February 2011  09:39:45PM
    [  2900.309] 
    [  2900.309] Current version of pixman: 0.20.2
    [  2900.309]     Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
    [  2900.309] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [  2900.310] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 25 12:15:42 2011
    [  2900.310] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [  2900.310] (==) No Layout section.  Using the first Screen section.
    [  2900.310] (**) |-->Screen "Screen0" (0)
    [  2900.310] (**) |   |-->Monitor "Monitor0"
    [  2900.311] (**) |   |-->Device "Card0"
    [  2900.311] (==) Automatically adding devices
    [  2900.311] (==) Automatically enabling devices
    [  2900.311] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [  2900.311]     Entry deleted from font path.
    [  2900.311] (==) FontPath set to:
        /usr/share/fonts/misc/,
        /usr/share/fonts/TTF/,
        /usr/share/fonts/Type1/,
        /usr/share/fonts/100dpi/,
        /usr/share/fonts/75dpi/
    [  2900.311] (==) ModulePath set to "/usr/lib/xorg/modules"
    [  2900.311] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
    [  2900.311] (II) Loader magic: 0x81f3040
    [  2900.311] (II) Module ABI versions:
    [  2900.311]     X.Org ANSI C Emulation: 0.4
    [  2900.311]     X.Org Video Driver: 8.0
    [  2900.311]     X.Org XInput driver : 11.0
    [  2900.311]     X.Org Server Extension : 4.0
    [  2900.312] (--) PCI:*(0:0:2:0) 8086:3582:1179:0037 rev 2, Mem @ 0xd8000000/134217728, 0xd0000000/524288, I/O @ 0x0000eff8/8
    [  2900.312] (--) PCI: (0:0:2:1) 8086:3582:1179:0037 rev 2, Mem @ 0x40000000/134217728, 0x4c000000/524288
    [  2900.312] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [  2900.312] (II) LoadModule: "extmod"
    [  2900.312] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [  2900.312] (II) Module extmod: vendor="X.Org Foundation"
    [  2900.312]     compiled for 1.9.4, module version = 1.0.0
    [  2900.312]     Module class: X.Org Server Extension
    [  2900.312]     ABI class: X.Org Server Extension, version 4.0
    [  2900.312] (II) Loading extension MIT-SCREEN-SAVER
    [  2900.312] (II) Loading extension XFree86-VidModeExtension
    [  2900.312] (II) Loading extension XFree86-DGA
    [  2900.312] (II) Loading extension DPMS
    [  2900.312] (II) Loading extension XVideo
    [  2900.312] (II) Loading extension XVideo-MotionCompensation
    [  2900.312] (II) Loading extension X-Resource
    [  2900.312] (II) LoadModule: "dbe"
    [  2900.312] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [  2900.313] (II) Module dbe: vendor="X.Org Foundation"
    [  2900.313]     compiled for 1.9.4, module version = 1.0.0
    [  2900.313]     Module class: X.Org Server Extension
    [  2900.313]     ABI class: X.Org Server Extension, version 4.0
    [  2900.313] (II) Loading extension DOUBLE-BUFFER
    [  2900.313] (II) LoadModule: "glx"
    [  2900.313] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [  2900.313] (II) Module glx: vendor="X.Org Foundation"
    [  2900.313]     compiled for 1.9.4, module version = 1.0.0
    [  2900.313]     ABI class: X.Org Server Extension, version 4.0
    [  2900.313] (==) AIGLX enabled
    [  2900.313] (II) Loading extension GLX
    [  2900.313] (II) LoadModule: "record"
    [  2900.313] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [  2900.313] (II) Module record: vendor="X.Org Foundation"
    [  2900.313]     compiled for 1.9.4, module version = 1.13.0
    [  2900.313]     Module class: X.Org Server Extension
    [  2900.313]     ABI class: X.Org Server Extension, version 4.0
    [  2900.313] (II) Loading extension RECORD
    [  2900.313] (II) LoadModule: "dri"
    [  2900.313] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [  2900.314] (II) Module dri: vendor="X.Org Foundation"
    [  2900.314]     compiled for 1.9.4, module version = 1.0.0
    [  2900.314]     ABI class: X.Org Server Extension, version 4.0
    [  2900.314] (II) Loading extension XFree86-DRI
    [  2900.314] (II) LoadModule: "dri2"
    [  2900.314] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [  2900.314] (II) Module dri2: vendor="X.Org Foundation"
    [  2900.314]     compiled for 1.9.4, module version = 1.2.0
    [  2900.314]     ABI class: X.Org Server Extension, version 4.0
    [  2900.314] (II) Loading extension DRI2
    [  2900.314] (II) LoadModule: "intel"
    [  2900.314] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [  2900.314] (II) Module intel: vendor="X.Org Foundation"
    [  2900.314]     compiled for 1.9.4, module version = 2.14.0
    [  2900.314]     Module class: X.Org Video Driver
    [  2900.314]     ABI class: X.Org Video Driver, version 8.0
    [  2900.314] (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
    [  2900.314] (--) using VT number 7
    [  2900.324] (EE) No devices detected.
    [  2900.324]
    Fatal server error:
    [  2900.324] no screens found
    [  2900.324]
    Please consult the The X.Org Foundation support
         at http://wiki.x.org
    for help.
    [  2900.324] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [  2900.324]

    Please use [ code ] tags for pasting code https://bbs.archlinux.org/help.php#bbcode as it makes your posts much easier to read.
    There's a problem with old Intel cards and the current Intel drivers. Unfortunately using older drivers means downgrading xorg-server and friends. Read about downgrading in the wiki.
    I'm currently using xf86-video-intel 2.13.0-4 and xorg-server 1.9.4-1 and things are OK. My card
    [karol@black ~]$ lspci | grep -i vga
    00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)
    Last edited by karol (2011-04-25 21:16:37)

  • Tearing on VGA output, LVDS OK on 950GMA with xf86-video-intel-2.6.10

    I'm crossposting this message i sent on intel-graphics ml and xorg bugzilla, because maybe some of you can point me to a solution.
    i own an asus eeepc1005ha, it uses intel gma 950.
    Playing a video on the internal LVDS panel is very pleasing and tear
    free, but as soon as i connect the vga output, i can notice tearing or
    flickering on the picture.
    I tried all possible configurations:
    -Booting with the lid open (tty on LVDS) and then switching to xorg
    with a VGA only output. (VGA tears)
    -Booting with the lid closed (tty on VGA) and using xorg on VGA. (VGA tears)
    -VGA+LVDS in clone mode (VGA and LVDS tears)
    -VGA+LVDS in multihead mode (expanded desktop) (VGA and LVDS tears)
    Using xv adaptor via mplayer results in a different tear effect, seems
    more like a flickering, while the GL output definitely tears.
    I couldn't try overlay adaptor because i don't have a 2.6.33 kernel yet
    (believe it or not, i've seen overlay tearing too with an old intel
    driver in the past, i think 2.7.1, in a cloned mode if lvds was at
    60hz, while vga was at 70hz)
    I'm using xf86-video-intel 2.10.0 and kernel 2.6.32.9
    I used the framerate test videos available here:
    http://spng.se/frame-rate-test/
    Thanks for reading.
    Last edited by kokoko3k (2010-03-07 08:23:48)

    You're right, here's the references:
    http://lists.freedesktop.org/archives/i … 06092.html
    http://bugs.freedesktop.org/show_bug.cgi?id=26925
    About your command, i'll try, but what it does is just picking the first port from first adaptor, right?
    By now (xf86-video-intel 2.10.0 and kernel 2.6.32.9), we just have a single adaptor, the textured one;
    why the first port should make a difference?
    Maybe with your setup the overlay adaptor was picked, and in 99% of the cases that would certanly help.
    As a side note, newer mplayer versions comes with an useful option: -vo xv:adaptor=#
    What i think is that vblank interrupts generation is (and was) messed up in the drivers code.
    see:
    (believe it or not, i've seen overlay tearing too with an old intel
    driver in the past, i think 2.7.1, in a cloned mode if lvds was at
    60hz, while vga was at 70hz)

  • Screen display looks fuzzy using xf86-video-intel on a HP Pavilion 23

    Hello,
    First off I want to say, thank you for Arch! Been using some distros on and off and I think I found my /home! I made a full plunge into Linux a bit ago after some Windows 8.1 issues, switched to Arch and not looking back. Anyways, So far all my computers are either Arch or Manjaro which I am moving more towards straight arch as Manjaro does have some issues when updating your system (dependency loops). All and all not bad, just liking the full control of a pure system then building from scratch.
    Ok, the issue at hand. I have removed Windows 8.1 from my HP All in One Pavilion 23 machine....what a nightmare that was.... Everything was good after turning off secure boot. I installed Arch Linux (3.14.4-1) x86_64, and I am having issues getting the xf86-video-intel driver to play nice with X.
    I have taken a screenshot:
    Screenshot
    I notice this starts right after the choosing the Arch Linux from the boot option menu. It starts the load nice and crisp but after a second the screen flickers with some lines at the top of the screen, random colors, only about the top 3rd of the screen. This modules begin to load but the terminal text looks blocky and horrible.
    I am using Openbox 3.5.2-6 with slim 1.3.6-4. Running xorg-server 1.15.1-1 and xorg-server-utils 7.6-3 with all the dependencies of course.
    Output from pacman queries for video drivers
    xf86-video-intel 2.99.911-2
    xf86-video-vesa 2.3.2-4
    lspci output
    00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
    00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
    00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
    00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
    00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d5)
    00:1c.4 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #5 (rev d5)
    00:1c.5 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #6 (rev d5)
    00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
    00:1f.0 ISA bridge: Intel Corporation H87 Express LPC Controller (rev 05)
    00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
    00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
    02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)
    03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)
    04:00.0 Network controller: Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01)
    my /etc/mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES="i915"
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect block filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev block filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev block mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev block lvm2 filesystems"
    ## NOTE: If you have /usr on a separate partition, you MUST include the
    # usr, fsck and shutdown hooks.
    HOOKS="base udev autodetect modconf block filesystems keyboard fsck"
    # COMPRESSION
    # Use this to compress the initramfs image. By default, gzip compression
    # is used. Use 'cat' to create an uncompressed image.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    #COMPRESSION="lz4"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    ,my /etc/default/grub.conf
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    And last my /var/log/Xorg.0.log
    [ 15.641]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 15.641] X Protocol Version 11, Revision 0
    [ 15.641] Build Operating System: Linux 3.14.0-4-ARCH x86_64
    [ 15.641] Current Operating System: Linux localhost 3.14.4-1-ARCH #1 SMP PREEMPT Tue May 13 16:41:39 CEST 2014 x86_64
    [ 15.641] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0c1916a0-b631-478f-ac6b-aa5d123f75cd rw quiet splash
    [ 15.641] Build Date: 14 April 2014 08:39:09AM
    [ 15.641]
    [ 15.641] Current version of pixman: 0.32.4
    [ 15.641] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 15.641] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 15.641] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jun 1 17:05:15 2014
    [ 15.687] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 15.687] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 15.739] (==) No Layout section. Using the first Screen section.
    [ 15.739] (==) No screen section available. Using defaults.
    [ 15.739] (**) |-->Screen "Default Screen Section" (0)
    [ 15.739] (**) | |-->Monitor "<default monitor>"
    [ 15.764] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 15.764] (**) | |-->Device "Intel Graphics"
    [ 15.764] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 15.764] (==) Automatically adding devices
    [ 15.764] (==) Automatically enabling devices
    [ 15.764] (==) Automatically adding GPU devices
    [ 15.793] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 15.793] Entry deleted from font path.
    [ 15.795] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 15.795] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 15.795] (**) Extension "Composite" is enabled
    [ 15.795] (**) Extension "RENDER" is enabled
    [ 15.795] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 15.795] (II) Loader magic: 0x804c80
    [ 15.795] (II) Module ABI versions:
    [ 15.795] X.Org ANSI C Emulation: 0.4
    [ 15.795] X.Org Video Driver: 15.0
    [ 15.795] X.Org XInput driver : 20.0
    [ 15.796] X.Org Server Extension : 8.0
    [ 15.796] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 15.798] (--) PCI:*(0:0:2:0) 8086:0412:103c:2b0f rev 6, Mem @ 0xf7800000/4194304, 0xe0000000/268435456, I/O @ 0x0000f000/64
    [ 15.798] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 15.798] Initializing built-in extension Generic Event Extension
    [ 15.798] Initializing built-in extension SHAPE
    [ 15.798] Initializing built-in extension MIT-SHM
    [ 15.798] Initializing built-in extension XInputExtension
    [ 15.798] Initializing built-in extension XTEST
    [ 15.798] Initializing built-in extension BIG-REQUESTS
    [ 15.798] Initializing built-in extension SYNC
    [ 15.798] Initializing built-in extension XKEYBOARD
    [ 15.798] Initializing built-in extension XC-MISC
    [ 15.798] Initializing built-in extension SECURITY
    [ 15.798] Initializing built-in extension XINERAMA
    [ 15.798] Initializing built-in extension XFIXES
    [ 15.798] Initializing built-in extension RENDER
    [ 15.799] Initializing built-in extension RANDR
    [ 15.799] Initializing built-in extension COMPOSITE
    [ 15.799] Initializing built-in extension DAMAGE
    [ 15.799] Initializing built-in extension MIT-SCREEN-SAVER
    [ 15.799] Initializing built-in extension DOUBLE-BUFFER
    [ 15.799] Initializing built-in extension RECORD
    [ 15.799] Initializing built-in extension DPMS
    [ 15.799] Initializing built-in extension Present
    [ 15.799] Initializing built-in extension DRI3
    [ 15.799] Initializing built-in extension X-Resource
    [ 15.799] Initializing built-in extension XVideo
    [ 15.799] Initializing built-in extension XVideo-MotionCompensation
    [ 15.799] Initializing built-in extension XFree86-VidModeExtension
    [ 15.799] Initializing built-in extension XFree86-DGA
    [ 15.799] Initializing built-in extension XFree86-DRI
    [ 15.799] Initializing built-in extension DRI2
    [ 15.799] (II) "glx" will be loaded by default.
    [ 15.799] (II) LoadModule: "dri2"
    [ 15.799] (II) Module "dri2" already built-in
    [ 15.799] (II) LoadModule: "glamoregl"
    [ 15.808] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 15.917] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 15.917] compiled for 1.15.0, module version = 0.6.0
    [ 15.917] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 15.917] (II) LoadModule: "glx"
    [ 15.917] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 15.928] (II) Module glx: vendor="X.Org Foundation"
    [ 15.929] compiled for 1.15.1, module version = 1.0.0
    [ 15.929] ABI class: X.Org Server Extension, version 8.0
    [ 15.929] (==) AIGLX enabled
    [ 15.929] Loading extension GLX
    [ 15.929] (II) LoadModule: "intel"
    [ 15.929] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 15.955] (II) Module intel: vendor="X.Org Foundation"
    [ 15.955] compiled for 1.15.0, module version = 2.99.911
    [ 15.955] Module class: X.Org Video Driver
    [ 15.955] ABI class: X.Org Video Driver, version 15.0
    [ 15.955] (II) intel: Driver for Intel(R) 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
    [ 15.956] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 15.956] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 15.956] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 15.956] (++) using VT number 7
    [ 15.971] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4600
    [ 15.971] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
    [ 15.971] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 15.971] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 15.971] (==) intel(0): RGB weight 888
    [ 15.971] (==) intel(0): Default visual is TrueColor
    [ 15.971] (**) intel(0): Option "AccelMethod" "sna"
    [ 15.971] (**) intel(0): Option "DRI" "true"
    [ 15.971] (**) intel(0): Option "TearFree" "true"
    [ 15.972] (**) intel(0): Framebuffer tiled
    [ 15.972] (**) intel(0): Pixmaps tiled
    [ 15.972] (**) intel(0): "Tear free" enabled
    [ 15.972] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 15.972] (II) intel(0): Output eDP1 has no monitor section
    [ 15.972] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output eDP1
    [ 15.972] (II) intel(0): Output VGA1 has no monitor section
    [ 15.972] (II) intel(0): Output DP1 has no monitor section
    [ 15.972] (II) intel(0): Output HDMI1 has no monitor section
    [ 15.972] (II) intel(0): Output DP2 has no monitor section
    [ 15.972] (II) intel(0): Output HDMI2 has no monitor section
    [ 15.972] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 15.972] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
    [ 15.972] (==) intel(0): DPI set to (96, 96)
    [ 15.972] (II) Loading sub module "dri2"
    [ 15.972] (II) LoadModule: "dri2"
    [ 15.972] (II) Module "dri2" already built-in
    [ 15.972] (==) Depth 24 pixmap format is 32 bpp
    [ 15.986] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
    [ 15.986] (==) intel(0): Backing store enabled
    [ 15.986] (==) intel(0): Silken mouse enabled
    [ 15.986] (II) intel(0): HW Cursor enabled
    [ 15.986] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 15.987] (==) intel(0): DPMS enabled
    [ 15.987] (II) intel(0): [DRI2] Setup complete
    [ 15.987] (II) intel(0): [DRI2] DRI driver: i965
    [ 15.987] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 15.987] (II) intel(0): direct rendering: DRI2 Enabled
    [ 15.987] (==) intel(0): hotplug detection: "enabled"
    [ 15.987] (--) RandR disabled
    [ 16.067] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 16.067] (II) AIGLX: enabled GLX_ARB_create_context
    [ 16.067] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 16.067] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 16.067] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 16.067] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 16.067] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 16.067] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 16.067] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 16.067] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 16.067] (II) AIGLX: Loaded and initialized i965
    [ 16.067] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 16.085] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 16.107] (II) intel(0): Setting screen physical size to 508 x 285
    [ 16.375] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 16.375] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 16.375] (II) LoadModule: "evdev"
    [ 16.383] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 16.402] (II) Module evdev: vendor="X.Org Foundation"
    [ 16.402] compiled for 1.15.1, module version = 2.9.0
    [ 16.402] Module class: X.Org XInput Driver
    [ 16.402] ABI class: X.Org XInput driver, version 20.0
    [ 16.402] (II) Using input driver 'evdev' for 'Power Button'
    [ 16.402] (**) Power Button: always reports core events
    [ 16.402] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 16.402] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 16.402] (--) evdev: Power Button: Found keys
    [ 16.402] (II) evdev: Power Button: Configuring as keyboard
    [ 16.402] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 16.402] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 16.402] (**) Option "xkb_rules" "evdev"
    [ 16.402] (**) Option "xkb_model" "pc104"
    [ 16.402] (**) Option "xkb_layout" "us"
    [ 16.442] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 16.442] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 16.442] (II) Using input driver 'evdev' for 'Video Bus'
    [ 16.442] (**) Video Bus: always reports core events
    [ 16.442] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 16.442] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 16.442] (--) evdev: Video Bus: Found keys
    [ 16.442] (II) evdev: Video Bus: Configuring as keyboard
    [ 16.442] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input2/event2"
    [ 16.442] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 16.442] (**) Option "xkb_rules" "evdev"
    [ 16.442] (**) Option "xkb_model" "pc104"
    [ 16.442] (**) Option "xkb_layout" "us"
    [ 16.443] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 16.443] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 16.443] (II) Using input driver 'evdev' for 'Power Button'
    [ 16.443] (**) Power Button: always reports core events
    [ 16.443] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 16.443] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 16.443] (--) evdev: Power Button: Found keys
    [ 16.443] (II) evdev: Power Button: Configuring as keyboard
    [ 16.443] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 16.443] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 16.443] (**) Option "xkb_rules" "evdev"
    [ 16.443] (**) Option "xkb_model" "pc104"
    [ 16.443] (**) Option "xkb_layout" "us"
    [ 16.444] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 16.444] (II) config/udev: Adding input device HP High Definition 1MP Webcam (/dev/input/event8)
    [ 16.444] (**) HP High Definition 1MP Webcam: Applying InputClass "evdev keyboard catchall"
    [ 16.444] (II) Using input driver 'evdev' for 'HP High Definition 1MP Webcam'
    [ 16.444] (**) HP High Definition 1MP Webcam: always reports core events
    [ 16.444] (**) evdev: HP High Definition 1MP Webcam: Device: "/dev/input/event8"
    [ 16.444] (--) evdev: HP High Definition 1MP Webcam: Vendor 0x4f2 Product 0xb40b
    [ 16.444] (--) evdev: HP High Definition 1MP Webcam: Found keys
    [ 16.444] (II) evdev: HP High Definition 1MP Webcam: Configuring as keyboard
    [ 16.444] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input8/event8"
    [ 16.444] (II) XINPUT: Adding extended input device "HP High Definition 1MP Webcam" (type: KEYBOARD, id 9)
    [ 16.444] (**) Option "xkb_rules" "evdev"
    [ 16.444] (**) Option "xkb_model" "pc104"
    [ 16.445] (**) Option "xkb_layout" "us"
    [ 16.445] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/event14)
    [ 16.445] (**) NextWindow Touchscreen: Applying InputClass "evdev touchscreen catchall"
    [ 16.445] (II) Using input driver 'evdev' for 'NextWindow Touchscreen'
    [ 16.445] (**) NextWindow Touchscreen: always reports core events
    [ 16.445] (**) evdev: NextWindow Touchscreen: Device: "/dev/input/event14"
    [ 16.445] (--) evdev: NextWindow Touchscreen: Vendor 0x1926 Product 0x33e
    [ 16.445] (--) evdev: NextWindow Touchscreen: Found absolute axes
    [ 16.445] (--) evdev: NextWindow Touchscreen: Found absolute multitouch axes
    [ 16.445] (II) evdev: NextWindow Touchscreen: No buttons found, faking one.
    [ 16.445] (--) evdev: NextWindow Touchscreen: Found x and y absolute axes
    [ 16.445] (--) evdev: NextWindow Touchscreen: Found absolute touchscreen
    [ 16.445] (II) evdev: NextWindow Touchscreen: Configuring as touchscreen
    [ 16.445] (**) evdev: NextWindow Touchscreen: YAxisMapping: buttons 4 and 5
    [ 16.445] (**) evdev: NextWindow Touchscreen: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 16.446] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1926:033E.0001/input/input14/event14"
    [ 16.446] (II) XINPUT: Adding extended input device "NextWindow Touchscreen" (type: TOUCHSCREEN, id 10)
    [ 16.446] (II) evdev: NextWindow Touchscreen: initialized for absolute axes.
    [ 16.446] (**) NextWindow Touchscreen: (accel) keeping acceleration scheme 1
    [ 16.446] (**) NextWindow Touchscreen: (accel) acceleration profile 0
    [ 16.446] (**) NextWindow Touchscreen: (accel) acceleration factor: 2.000
    [ 16.446] (**) NextWindow Touchscreen: (accel) acceleration threshold: 4
    [ 16.446] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/mouse2)
    [ 16.446] (II) No input driver specified, ignoring this device.
    [ 16.446] (II) This device may have been added with another device file.
    [ 16.447] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/event9)
    [ 16.447] (II) No input driver specified, ignoring this device.
    [ 16.447] (II) This device may have been added with another device file.
    [ 16.447] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/event10)
    [ 16.447] (**) NextWindow Touchscreen: Applying InputClass "evdev pointer catchall"
    [ 16.447] (II) Using input driver 'evdev' for 'NextWindow Touchscreen'
    [ 16.447] (**) NextWindow Touchscreen: always reports core events
    [ 16.447] (**) evdev: NextWindow Touchscreen: Device: "/dev/input/event10"
    [ 16.447] (--) evdev: NextWindow Touchscreen: Vendor 0x1926 Product 0x33e
    [ 16.447] (--) evdev: NextWindow Touchscreen: Found 3 mouse buttons
    [ 16.447] (--) evdev: NextWindow Touchscreen: Found absolute axes
    [ 16.447] (--) evdev: NextWindow Touchscreen: Found x and y absolute axes
    [ 16.447] (--) evdev: NextWindow Touchscreen: Found absolute touchscreen
    [ 16.447] (II) evdev: NextWindow Touchscreen: Configuring as touchscreen
    [ 16.447] (**) evdev: NextWindow Touchscreen: YAxisMapping: buttons 4 and 5
    [ 16.447] (**) evdev: NextWindow Touchscreen: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 16.448] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:1926:033E.0003/input/input10/event10"
    [ 16.448] (II) XINPUT: Adding extended input device "NextWindow Touchscreen" (type: TOUCHSCREEN, id 11)
    [ 16.448] (II) evdev: NextWindow Touchscreen: initialized for absolute axes.
    [ 16.448] (**) NextWindow Touchscreen: (accel) keeping acceleration scheme 1
    [ 16.448] (**) NextWindow Touchscreen: (accel) acceleration profile 0
    [ 16.448] (**) NextWindow Touchscreen: (accel) acceleration factor: 2.000
    [ 16.448] (**) NextWindow Touchscreen: (accel) acceleration threshold: 4
    [ 16.448] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/js0)
    [ 16.448] (II) No input driver specified, ignoring this device.
    [ 16.448] (II) This device may have been added with another device file.
    [ 16.449] (II) config/udev: Adding input device NextWindow Touchscreen (/dev/input/mouse0)
    [ 16.449] (II) No input driver specified, ignoring this device.
    [ 16.449] (II) This device may have been added with another device file.
    [ 16.449] (II) config/udev: Adding input device Hewlett Packard HP Wireless Keyboard Kit (/dev/input/event11)
    [ 16.449] (**) Hewlett Packard HP Wireless Keyboard Kit: Applying InputClass "evdev keyboard catchall"
    [ 16.449] (II) Using input driver 'evdev' for 'Hewlett Packard HP Wireless Keyboard Kit'
    [ 16.449] (**) Hewlett Packard HP Wireless Keyboard Kit: always reports core events
    [ 16.449] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: Device: "/dev/input/event11"
    [ 16.449] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Vendor 0x461 Product 0x4e25
    [ 16.449] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found keys
    [ 16.449] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Configuring as keyboard
    [ 16.449] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0/0003:0461:4E25.0004/input/input11/event11"
    [ 16.449] (II) XINPUT: Adding extended input device "Hewlett Packard HP Wireless Keyboard Kit" (type: KEYBOARD, id 12)
    [ 16.449] (**) Option "xkb_rules" "evdev"
    [ 16.449] (**) Option "xkb_model" "pc104"
    [ 16.449] (**) Option "xkb_layout" "us"
    [ 16.450] (II) config/udev: Adding input device Hewlett Packard HP Wireless Keyboard Kit (/dev/input/event12)
    [ 16.450] (**) Hewlett Packard HP Wireless Keyboard Kit: Applying InputClass "evdev keyboard catchall"
    [ 16.450] (II) Using input driver 'evdev' for 'Hewlett Packard HP Wireless Keyboard Kit'
    [ 16.450] (**) Hewlett Packard HP Wireless Keyboard Kit: always reports core events
    [ 16.450] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: Device: "/dev/input/event12"
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Vendor 0x461 Product 0x4e25
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found 1 mouse buttons
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found scroll wheel(s)
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found relative axes
    [ 16.450] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Forcing relative x/y axes to exist.
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found absolute axes
    [ 16.450] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Forcing absolute x/y axes to exist.
    [ 16.450] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found keys
    [ 16.450] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Configuring as mouse
    [ 16.450] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Configuring as keyboard
    [ 16.450] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Adding scrollwheel support
    [ 16.450] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: YAxisMapping: buttons 4 and 5
    [ 16.450] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 16.450] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.1/0003:0461:4E25.0005/input/input12/event12"
    [ 16.450] (II) XINPUT: Adding extended input device "Hewlett Packard HP Wireless Keyboard Kit" (type: KEYBOARD, id 13)
    [ 16.450] (**) Option "xkb_rules" "evdev"
    [ 16.450] (**) Option "xkb_model" "pc104"
    [ 16.450] (**) Option "xkb_layout" "us"
    [ 16.451] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: initialized for relative axes.
    [ 16.451] (WW) evdev: Hewlett Packard HP Wireless Keyboard Kit: ignoring absolute axes.
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) keeping acceleration scheme 1
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration profile 0
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration factor: 2.000
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration threshold: 4
    [ 16.451] (II) config/udev: Adding input device Hewlett Packard HP Wireless Keyboard Kit (/dev/input/event13)
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: Applying InputClass "evdev pointer catchall"
    [ 16.451] (II) Using input driver 'evdev' for 'Hewlett Packard HP Wireless Keyboard Kit'
    [ 16.451] (**) Hewlett Packard HP Wireless Keyboard Kit: always reports core events
    [ 16.451] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: Device: "/dev/input/event13"
    [ 16.452] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Vendor 0x461 Product 0x4e25
    [ 16.452] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found 3 mouse buttons
    [ 16.452] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found scroll wheel(s)
    [ 16.452] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found relative axes
    [ 16.452] (--) evdev: Hewlett Packard HP Wireless Keyboard Kit: Found x and y relative axes
    [ 16.452] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Configuring as mouse
    [ 16.452] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: Adding scrollwheel support
    [ 16.452] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: YAxisMapping: buttons 4 and 5
    [ 16.452] (**) evdev: Hewlett Packard HP Wireless Keyboard Kit: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 16.452] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.2/0003:0461:4E25.0006/input/input13/event13"
    [ 16.452] (II) XINPUT: Adding extended input device "Hewlett Packard HP Wireless Keyboard Kit" (type: MOUSE, id 14)
    [ 16.452] (II) evdev: Hewlett Packard HP Wireless Keyboard Kit: initialized for relative axes.
    [ 16.452] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) keeping acceleration scheme 1
    [ 16.452] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration profile 0
    [ 16.452] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration factor: 2.000
    [ 16.452] (**) Hewlett Packard HP Wireless Keyboard Kit: (accel) acceleration threshold: 4
    [ 16.452] (II) config/udev: Adding input device Hewlett Packard HP Wireless Keyboard Kit (/dev/input/mouse1)
    [ 16.452] (II) No input driver specified, ignoring this device.
    [ 16.452] (II) This device may have been added with another device file.
    [ 16.453] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event6)
    [ 16.453] (II) No input driver specified, ignoring this device.
    [ 16.453] (II) This device may have been added with another device file.
    [ 16.453] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event5)
    [ 16.453] (II) No input driver specified, ignoring this device.
    [ 16.453] (II) This device may have been added with another device file.
    [ 16.453] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event4)
    [ 16.453] (II) No input driver specified, ignoring this device.
    [ 16.453] (II) This device may have been added with another device file.
    [ 16.453] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 16.453] (II) No input driver specified, ignoring this device.
    [ 16.453] (II) This device may have been added with another device file.
    [ 16.454] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event7)
    [ 16.454] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 16.454] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 16.454] (**) HP WMI hotkeys: always reports core events
    [ 16.454] (**) evdev: HP WMI hotkeys: Device: "/dev/input/event7"
    [ 16.454] (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    [ 16.454] (--) evdev: HP WMI hotkeys: Found keys
    [ 16.454] (II) evdev: HP WMI hotkeys: Configuring as keyboard
    [ 16.454] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event7"
    [ 16.454] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 15)
    [ 16.454] (**) Option "xkb_rules" "evdev"
    [ 16.454] (**) Option "xkb_model" "pc104"
    [ 16.454] (**) Option "xkb_layout" "us"
    [ 1192.410] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 1811.202] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 5455.421] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none

    I saw your post, and had found it incredulous that you have a 1920x1080 display.  A bit of research and I found I was wrong.
    So, it appears you are driving the panel at its native resolution.  Unfortunately, trying to determine what you mean by "Fuzzy" is probably going to be like trying to nail Jello to a tree.  But, let's give it a shot.  Is it fuzzy before you start X?  Are lines and shapes fuzzy? Or is it just text that is fuzzy?
    If it is just fonts, it could be a problem with hinting.  Hinting is where the edges of fonts are deliberately fuzzed and feathered to get the kerning correct when the physical pixels of the display don't quite line up.  This works well, unless the thing doing the hinting does not understand the geometry of the display.  In a color LCD, each pixel is actually made up of smaller sub pixels, generally three -- A red, a green, and a blue.  Green is usually in the middle.  Some displays have Two greens per pixel, arranged RGBG.  Some displays even have yellow subpixels.  Sometimes the subpixels are arranged left to right, sometimes they are arranged top to bottom.  Long story short, if you have hinting enabled, but the geometry is configured incorrectly, bad things happen.   Take a look at this wiki article

  • Xorg + xf86-video-intel lags with compiz / high cpu usage without it

    I have recently noticed that my X server lags. It happens approximately once per second (it's fairly regular) and it can be easily observed when watching movies, dragging windows or rotating cube. Screen just hangs for some milliseconds. Lags are bigger and happens more often when many windows are opened.
    Even worse things happen when I'm _not_ running compiz. X's cpu usage spikes permanently up to 30-40% and lags are even more noticable.
    My hardware:
    Laptop with Intel GMA 950
    Configuration
    I tried some different xorg.confs but it seems to be irrevelant. It happens even on plain conf created by 'Xorg -configure'
    xorg-server 1.5.3-3
    mesa 7.2-1
    xf86-video-intel 2.4.3-1
    kernel26 2.6.27.8-1
    I also tried downgrading these packages to
    xorg-server 1.4.2-2
    mesa 7.0.3-3
    xf86-video-intel 2.3.2-1
    kernel26 2.6.27-1
    and it seems to resolve cpu usage problem but not the lags.
    Does anybody know what might cause these lags? It's really annoying.

    It turned out that color depth was the issue. I think that 24bit is too big for my graphics card and compiz (although I remember that i810+24bit+compiz worked fine).
    So changing DefaultDepth in xorg.conf to 16 fixed the problem. Is there any other way to workaround this without decreasing color depth?

  • X crashes with YouTube video pages after xf86-video-intel upgrade

    X crashes when trying to view a YouTube video page after the last xf86-video-intel upgrade. I think it happens with other websites as well but most of them work just fine. If I downgrade xf86-video-intel to the previous version the problem is gone.
    Xorg.0.log shows:
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x809d93b]
    1: /usr/bin/X (0x8048000+0x5cc55) [0x80a4c55]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb77fc40c]
    3: /usr/lib/xorg/modules/drivers/intel_drv.so (0xb7275000+0x3458e) [0xb72a958e]
    4: /usr/bin/X (0x8048000+0xacc80) [0x80f4c80]
    5: /usr/bin/X (0x8048000+0x93c97) [0x80dbc97]
    6: /usr/bin/X (0x8048000+0x94b3f) [0x80dcb3f]
    7: /usr/bin/X (0x8048000+0x402e7) [0x80882e7]
    8: /usr/bin/X (0x8048000+0x1a685) [0x8062685]
    9: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7418b86]
    10: /usr/bin/X (0x8048000+0x1a271) [0x8062271]
    Bus error at address 0xb5fe2000
    Fatal server error:
    Caught signal 7 (Bus error). Server aborting

    Confirmed. Same behaviour here.
    EeePC 901, xf86-video-intel 2.10.0-1.
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x809d93b]
    1: /usr/bin/X (0x8048000+0x5cc55) [0x80a4c55]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb771340c]
    3: /usr/lib/xorg/modules/drivers/intel_drv.so (0xb71a6000+0x3458e) [0xb71da58e]
    4: /usr/bin/X (0x8048000+0xacc80) [0x80f4c80]
    5: /usr/bin/X (0x8048000+0x93c97) [0x80dbc97]
    6: /usr/bin/X (0x8048000+0x94b3f) [0x80dcb3f]
    7: /usr/bin/X (0x8048000+0x402e7) [0x80882e7]
    8: /usr/bin/X (0x8048000+0x1a685) [0x8062685]
    9: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7343b86]
    10: /usr/bin/X (0x8048000+0x1a271) [0x8062271]
    Bus error at address 0xb5a4d000
    Fatal server error:
    Caught signal 7 (Bus error). Server aborting
    Last edited by hw-tph (2010-02-13 12:32:51)

  • Xf86-video-intel vs hibernate

    I have recently updated by laptop with xorg7.3 (ie, xorg-server 1.4 +
    xf86-video-intel (instead of xf86-video-i810) + xrand 1.2).  After a
    long struggling period I have managed to make all these new things
    working reasonably well on my Dell X1 laptop. However I still have
    one open issue: hibernate scripts no longer work. The laptop hibernate
    correctly. It also to wake up but X crashes when it restarts with the
    following error message:
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    Ring at virtual 0xa79b1000 head 0x0 tail 0x10 count 4
        0001ff80: 00000000
        0001ff84: 00000000
        0001ff88: 00000000
        0001ff8c: 00000000
        0001ff90: 00000000
        0001ff94: 00000000
        0001ff98: 00000000
        0001ff9c: 00000000
        0001ffa0: 00000000
        0001ffa4: 00000000
        0001ffa8: 00000000
        0001ffac: 00000000
        0001ffb0: 00000000
        0001ffb4: 00000000
        0001ffb8: 00000000
        0001ffbc: 00000000
        0001ffc0: 00000000
        0001ffc4: 00000000
        0001ffc8: 00000000
        0001ffcc: 00000000
        0001ffd0: 00000000
        0001ffd4: 00000000
        0001ffd8: 00000000
        0001ffdc: 00000000
        0001ffe0: 00000000
        0001ffe4: 00000000
        0001ffe8: 00000000
        0001ffec: 00000000
        0001fff0: 00000000
        0001fff4: 00000000
        0001fff8: 00000000
        0001fffc: 00000000
        00000000: 02000011
    Ring end
    space: 131048 wanted 131064
    FatalError re-entered, aborting
    lockup
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    Is there any body here that could give some hints? Thanks in advance.
    Manuel
    Here is a description of my config:
    Laptop: DELL X1
    Kernel: 2.6.23.1
    Video driver: Intel i915
    xorg-server: 1.4
    xf86-video-intel: 2.1.1-2
    Xorg.conf:
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    #*    Default Layout                                                   */
    Section "ServerLayout"
        Identifier     "Default"
        Screen         0 "Default" 0 0
            Option            "AIGLX" "true"
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "USB Mouse" "SendCoreEvents"
        InputDevice    "Synaptics" "SendCoreEvents"
    #*    !!! WARNING                                                      */
    #* xorg <=7.2 used AlwaysCore.                                         */
    #* It has been replaced in xorg-7.3 with SendCoreEvents                */
    #*     InputDevice    "USB Mouse" "AlwaysCore"                        */
    #*     InputDevice    "Synaptics" "AlwaysCore"                        */
    EndSection
    #*    Server flags                                                     */
    Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
    EndSection
    #*    Files                                                            */
    Section "Files"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/MathML"
    #    FontPath     "/usr/share/fonts/ttf-bitstream-vera"
    EndSection
    #*    DRI                                                              */
    Section "DRI"
        Mode 0666
    EndSection
    #*    Modules                                                          */
    Section "Module"
            Load        "ddc"
        Load        "dbe"
        Load        "dri"
        Load        "extmod"
        Load        "glx"
        Load        "bitmap"
        Load        "type1"
        Load        "freetype"
        Load        "record"
        Load        "vbe"
            Load        "synaptics"
            Load        "int10"
    EndSection
    #*    Xorg extensions                                                  */
    Section "Extensions"
            Option      "Composite" "Enable"
            Option         "GLX" "Enable"
            Option      "RENDER" "Enable"
    EndSection
    #*    Keyboard                                                         */
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "CoreKeyboard"
        Option      "XkbRules" "xorg"
        Option      "XkbModel" "inspiron"
        Option      "XkbLayout" "us,fr"
        Option      "XKbOptions" "grp:alt_shift_toggle"
    EndSection
    #*    Mice                                                             */
    Section "InputDevice"
        Identifier  "Synaptics"
        Driver      "synaptics"
            Option      "CorePointer"
        Option      "Device"        "/dev/input/mice"
        Option      "SHMConfig"        "on"
            Option      "Protocol"          "auto-dev"
        Option      "LeftEdge"        "1700"
        Option      "RightEdge"        "5150"
        Option      "TopEdge"        "1700"
        Option      "BottomEdge"    "4200"
        Option      "FingerLow"        "25"
        Option      "FingerHigh"    "30"
        Option      "MaxTapTime"    "180"
        Option      "MaxTapMove"    "220"
        Option      "VertScrollDelta"    "100"
        Option      "MinSpeed"        "0.06"
        Option      "MaxSpeed"        "0.25"
        Option      "AccelFactor"    "0.0020"
        Option      "TapButton1"    "1"
        Option      "TapButton2"    "2"
        Option      "TapButton3"        "3"
        Option        "LTCornorButton"    "0"
        #Option        "LBCornorButton"    "0"
        #Option        "RTCornorButton"    "0"
        #Option        "RBCornorButton"    "0"
    EndSection
    Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "IMPS/2"
        Option      "Device" "/dev/misc/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
        Identifier  "USB Mouse"
        Driver      "mouse"
        Option      "Device" "/dev/input/mice"
        Option      "SendCoreEvents" "true"
        Option      "Protocol" "IMPS/2"
        Option      "ZAxisMapping" "4 5"
            Option      "Buttons" "5"
    EndSection
    #*    Screen                                                           */
    Section "Screen"
        Identifier "Default"
        Device     "intel"
            Option     "XAANoOffscreenPixmaps"
        Monitor    "generic"
        DefaultColorDepth 24
        SubSection "Display"
            Depth 16
            Modes "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth 24
            Modes "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
    EndSection
    #*    Graphic card                                                     */
    #*    !!! WARNING                                                      */
    #* xorg <=7.2 used i810 video driver.                                  */
    #* It has been replaced in xorg-7.3 with xf86-video-intel              */
    Section "Device"
        Identifier  "intel"
        Driver        "intel"
        BusID        "PCI:0:2:0"
            Screen      0
            VideoRam    131072
            Option      "DPMS" "true"
            Option      "DDC" "true"
            Option      "XVideo" "true"
            Option         "XAANoOffscreenPixmaps" "true"
          Option      "DRI" "true"
    EndSection
    #*    Monitor                                                          */
    Section "Monitor"
        Identifier    "generic"
        HorizSync        27 - 96
        VertRefresh      40 - 160
        Option         "DPMS"
            Option          "Enable" "true"
    EndSection
    #*    Modes                                                            */
    Section "Modes"
        Identifier "Modes[0]"
            Modeline "1280x768" 80.14 1280 1344 1480 1680 768 769 772 795 -HSync +Vsync
    EndSection
    Section "Modes"
            Identifier "Modes[1]"
            ModeLine "1600x1024" 127.34 1600 1672 2032 2176 1024 1026 1038 1064
            ModeLine "1600x1024" 125.02 1600 1672 2032 2176 1024 1026 1038 1064
            ModeLine "1280x1024" 99.28 1280 1336 1616 1728 1024 1026 1038 1064
    EndSection
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    .xinitrc file:
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    #*=====================================================================*/
    #*    serrano/house/X/xrandr.sgi-1600x1024                             */
    #*    Author      :  Manuel Serrano                                    */
    #*    Creation    :  Wed Nov  7 11:35:38 2007                          */
    #*    Last change :  Sun Nov 11 08:44:36 2007 (serrano)                */
    #*    Copyright   :  2007 Manuel Serrano                               */
    #*    Using xrandr 1.2 to select the VGA output                        */
    #*=====================================================================*/
    mode=`xrandr | \
          grep "VGA connected" | \
          awk '{print $3}' | \
          sed -e "s/+[0-9]+[0-9]//"`
    if [ "$X_VGA_LAYOUT " != " " ]; then
      mode=$X_VGA_LAYOUT;
    fi
    if [ "$?" = "0" -a "$mode " != " " ]; then
      xrandr --output LVDS --off
      xrandr --newmode 1600x1024 108.00 1600 1616 1656 1704 1024 1027 1030 1056 -hsync -vsync
      xrandr --addmode VGA 1600x1024
      xrandr --output VGA --mode 1600x1024
    else
      xrandr --output LVDS --on
    fi
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    The X log that shows the problem:
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----
    _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
    _XSERVTransOpen: transport open failed for inet6/smith:0
    _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
    X.Org X Server 1.4.0
    Release Date: 5 September 2007
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.24-rc1-ARCH i686
    Current Operating System: Linux smith 2.6.23.1 #1 Sun Oct 21 23:05:01 CEST 2007 i686
    Build Date: 07 November 2007  11:19:12AM
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 11 08:14:07 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Default"
    (**) |-->Screen "Default" (0)
    (**) |   |-->Monitor "generic"
    (**) |   |-->Device "intel"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "USB Mouse"
    (**) |-->Input Device "Synaptics"
    (**) Option "AllowMouseOpenFail" "true"
    (**) Option "AIGLX" "true"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/TTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/MathML,
        /usr/share/fonts/misc,
        /usr/share/fonts/100dpi:unscaled,
        /usr/share/fonts/75dpi:unscaled,
        /usr/share/fonts/TTF,
        /usr/share/fonts/Type1
    (==) RgbPath set to "/usr/share/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (**) Extension "GLX" is enabled
    (**) Extension "RENDER" is enabled
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x81d4540
    (II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 2.0
        X.Org XInput driver : 2.0
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        ABI class: X.Org Video Driver, version 2.0
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2590 card 1028,01a3 rev 03 class 06,00,00 hdr 00
    (II) PCI: 00:02:0: chip 8086,2592 card 1028,01a3 rev 03 class 03,00,00 hdr 80
    (II) PCI: 00:02:1: chip 8086,2792 card 1028,01a3 rev 03 class 03,80,00 hdr 80
    (II) PCI: 00:1c:0: chip 8086,2660 card 0000,0000 rev 03 class 06,04,00 hdr 81
    (II) PCI: 00:1d:0: chip 8086,2658 card 1028,01a3 rev 03 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,2659 card 1028,01a3 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,265a card 1028,01a3 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:3: chip 8086,265b card 1028,01a3 rev 03 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,265c card 1028,01a3 rev 03 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev d3 class 06,04,01 hdr 81
    (II) PCI: 00:1e:2: chip 8086,266e card 1028,01a3 rev 03 class 04,01,00 hdr 00
    (II) PCI: 00:1e:3: chip 8086,266d card 14f1,5423 rev 03 class 07,03,00 hdr 00
    (II) PCI: 00:1f:0: chip 8086,2641 card 1028,01a3 rev 03 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,266f card 1028,01a3 rev 03 class 01,01,8a hdr 00
    (II) PCI: 00:1f:3: chip 8086,266a card 1028,01a3 rev 03 class 0c,05,00 hdr 00
    (II) PCI: 01:00:0: chip 14e4,1677 card 1028,01a3 rev 01 class 02,00,00 hdr 00
    (II) PCI: 02:01:0: chip 1180,0476 card 2000,0000 rev b3 class 06,07,00 hdr 82
    (II) PCI: 02:01:1: chip 1180,0552 card 1028,01a3 rev 08 class 0c,00,10 hdr 80
    (II) PCI: 02:01:2: chip 1180,0822 card 1028,01a3 rev 17 class 08,05,01 hdr 80
    (II) PCI: 02:03:0: chip 8086,4220 card 8086,2721 rev 05 class 02,80,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,3), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
        [0] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
        [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
        [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:28:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 1 non-prefetchable memory range:
        [0] -1    0    0xdfd00000 - 0xdfdfffff (0x100000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:30:0), (0,2,3), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
        [0] -1    0    0x00002000 - 0x00002fff (0x1000) IX[b]
    (II) Bus 2 non-prefetchable memory range:
        [0] -1    0    0xdfc00000 - 0xdfcfffff (0x100000) MX[b]
    (II) Bus 2 prefetchable memory range:
        [0] -1    0    0x60000000 - 0x63ffffff (0x4000000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) PCI-to-CardBus bridge:
    (II) Bus 3: bridge is at (2:1:0), (2,3,6), BCTRL: 0x0740 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
        [0] -1    0    0x00002000 - 0x000020ff (0x100) IX[b]
        [1] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    (II) Bus 3 prefetchable memory range:
        [0] -1    0    0x60000000 - 0x63ffffff (0x4000000) MX[b]
    (--) PCI:*(0:2:0) Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0xdff00000/19, 0xc0000000/28, 0xdfec0000/18, I/O @ 0xec38/3
    (--) PCI: (0:2:1) Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0xdff80000/19
    (II) Addressable bus resource ranges are
        [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
        [1] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
        [0] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [1] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [2] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [3] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [4] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [5] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [6] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [7] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [8] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [9] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [10] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [11] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [12] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [13] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [14] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [15] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [16] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [17] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [18] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [19] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [20] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [21] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [22] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [23] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [24] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [25] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
        [0] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [1] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [2] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [3] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [4] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [5] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [6] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [7] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [8] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [9] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [10] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [11] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [12] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [13] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [14] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [15] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [16] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [17] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [18] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [19] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [20] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [21] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [22] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [23] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [24] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [25] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [5] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [6] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [7] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [8] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [9] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [10] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [11] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [12] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [13] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [14] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
        [17] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [18] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [19] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [20] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [21] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [22] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [23] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [24] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [25] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [26] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [27] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [28] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [29] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [30] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [31] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "type1" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
    (**) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.2
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 1.4.0, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.13.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.1.0
        ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
        compiled for 4.3.99.902, module version = 1.0.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
        compiled for 7.2.0, module version = 2.1.1
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.2.2
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.2.3
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "synaptics"
    (II) Reloading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
        i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
        E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, 965G, 965Q, 946GZ,
        965GM, 965GME/GLE, G33, Q35, Q33
    (II) Primary Device is: PCI 00:02:0
    (WW) intel: No matching Device section for instance (BusID PCI:0:2:1) found
    (--) Chipset 915GM found
    (II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [5] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [6] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [7] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [8] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [9] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [10] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [11] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [12] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [13] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [14] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
        [17] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [18] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [19] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [20] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [21] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [22] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [23] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [24] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [25] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [26] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [27] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [28] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [29] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [30] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [31] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
    (II) resource ranges after probing:
        [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [4] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [5] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [6] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [7] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [8] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [9] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [10] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [11] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [12] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [13] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [14] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [15] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b]
        [16] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b]
        [17] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b]
        [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [19] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
        [20] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [21] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [22] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [23] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [24] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [25] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [26] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [27] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [28] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [29] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [30] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [31] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [32] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [33] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [34] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
        [35] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b]
        [36] 0    0    0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Reloading /usr/lib/xorg/modules//libvbe.so
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 0.1.0
        ABI class: X.Org Video Driver, version 2.0
    (**) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "DRI" "true"
    (**) intel(0): Option "XVideo" "true"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 915GM
    (--) intel(0): Chipset: "915GM"
    (--) intel(0): Linear framebuffer at 0xC0000000
    (--) intel(0): IO registers at addr 0xDFF00000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using XAA for acceleration
    (--) intel(0): Will try to allocate texture pool for old Mesa 3D driver.
    (II) intel(0): Will try to reserve 32768 kiB of AGP aperture space
        for the DRM memory manager.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"(II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section generic
    (**) intel(0): Option "Enable" "true"
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "LCD", prod id 22528
    (II) intel(0): DDCModeFromDetailedTiming: 1280x768 Warning: We only handle seperate sync.
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (WW) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VbeVersion is 768, OemStringPtr is 0x00002100,
        OemVendorNamePtr is 0x0000213d, OemProductNamePtr is 0x0000214f,
        OemProductRevPtr is 0x0000217d
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r)915GM/910ML/915MS Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r)915GM/910ML/915MS Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): No SDVO device found on SDVOB
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1600x1024"x0.0  108.00  1600 1616 1656 1704  1024 1027 1030 1056 -hsync -vsync (63.4 kHz)
    (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
    (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x0.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
    (II) intel(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
    (II) intel(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
    (II) intel(0): Modeline "1280x960"x59.9  101.25  1280 1360 1488 1696  960 963 967 996 -hsync +vsync (59.7 kHz)
    (II) intel(0): Modeline "1280x1024"x59.9  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): EDID vendor "LCD", prod id 22528
    (II) intel(0): DDCModeFromDetailedTiming: 1280x768 Warning: We only handle seperate sync.
    (II) intel(0): Output VGA enabled by config file
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Output VGA using initial mode 1600x1024
    (II) intel(0): Output LVDS using initial mode 1280x768
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 7932 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) intel(0): Display dimensions: (370, 240) mm
    (**) intel(0): DPI set to (140, 216)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
        compiled for 1.4.0, module version = 1.2.0
        ABI class: X.Org Video Driver, version 2.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x68000 (TV_CTL) changed from 0x400c0c00 to 0x000c0c00
    (WW) intel(0): Register 0x68080 (TV_FILTER_CTL_1) changed from 0x80000d63 to 0x800010bb
    (WW) intel(0): Register 0x68084 (TV_FILTER_CTL_2) changed from 0x0001e1e2 to 0x00028283
    (WW) intel(0): Register 0x68088 (TV_FILTER_CTL_3) changed from 0x0000f0f1 to 0x00014141
    (II) Loading sub module "dri"
    (II) LoadModule: "dri"
    (II) Reloading /usr/lib/xorg/modules/extensions//libdri.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC?  No, I don't.
    (II) resource ranges after preInit:
        [0] 0    0    0xdfec0000 - 0xdfefffff (0x40000) MS[b]
        [1] 0    0    0xc0000000 - 0xcfffffff (0x10000000) MS[b]
        [2] 0    0    0xdff00000 - 0xdff7ffff (0x80000) MS[b]
        [3] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
        [4] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
        [5] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
        [6] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
        [7] -1    0    0xdfcff000 - 0xdfcfffff (0x1000) MX[b]
        [8] -1    0    0xdfcfe700 - 0xdfcfe7ff (0x100) MX[b]
        [9] -1    0    0xdfcfe800 - 0xdfcfefff (0x800) MX[b]
        [10] -1    0    0xdfdf0000 - 0xdfdfffff (0x10000) MX[b]
        [11] -1    0    0xdfebfd00 - 0xdfebfdff (0x100) MX[b]
        [12] -1    0    0xdfebfe00 - 0xdfebffff (0x200) MX[b]
        [13] -1    0    0xffa80800 - 0xffa80bff (0x400) MX[b]
        [14] -1    0    0xdff80000 - 0xdfffffff (0x80000) MX[b](B)
        [15] -1    0    0xdfec0000 - 0xdfefffff (0x40000) MX[b](B)
        [16] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
        [17] -1    0    0xdff00000 - 0xdff7ffff (0x80000) MX[b](B)
        [18] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
        [19] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
        [20] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
        [21] 0    0    0x0000ec38 - 0x0000ec3f (0x8) IS[b]
        [22] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
        [23] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
        [24] -1    0    0x000010c0 - 0x000010df (0x20) IX[b]
        [25] -1    0    0x0000bfa0 - 0x0000bfaf (0x10) IX[b]
        [26] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
        [27] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
        [28] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
        [29] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
        [30] -1    0    0x0000ec80 - 0x0000ecff (0x80) IX[b]
        [31] -1    0    0x0000ee00 - 0x0000eeff (0x100) IX[b]
        [32] -1    0    0x0000ec40 - 0x0000ec7f (0x40) IX[b]
        [33] -1    0    0x0000ed00 - 0x0000edff (0x100) IX[b]
        [34] -1    0    0x0000bf20 - 0x0000bf3f (0x20) IX[b]
        [35] -1    0    0x0000bf40 - 0x0000bf5f (0x20) IX[b]
        [36] -1    0    0x0000bf60 - 0x0000bf7f (0x20) IX[b]
        [37] -1    0    0x0000bf80 - 0x0000bf9f (0x20) IX[b]
        [38] -1    0    0x0000ec38 - 0x0000ec3f (0x8) IX[b](B)
        [39] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
        [40] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (WW) intel(0): VideoRam configuration found, which is no longer recommended.
    (II) intel(0): Continuing with default 262144kB VideoRam instead of 131072 kB.
    (II) intel(0): Kernel reported 301312 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 1205244 kB available
    (**) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers and
               large DRI memory manager reservation:
    (II) intel(0): Allocating 7164 scanlines for pixmap cache
    (II) intel(0): Success.
    (II) intel(0): Memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x        4f820000 physical)
    (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB)
    (II) intel(0): 0x00032000-0x00032fff: overlay registers (4 kB, 0x        4f832000 physical)
    (II) intel(0): 0x00040000-0x04837fff: front buffer (73696 kB)
    (II) intel(0): 0x007bf000:            end of stolen memory
    (II) intel(0): 0x04838000-0x04847fff: xaa scratch (64 kB)
    (II) intel(0): 0x05000000-0x05ffffff: back buffer (16384 kB)
    (II) intel(0): 0x06000000-0x06ffffff: depth buffer (16384 kB)
    (II) intel(0): 0x07000000-0x08ffffff: DRI memory manager (32768 kB)
    (II) intel(0): 0x09000000-0x0affffff: textures (32768 kB)
    (II) intel(0): 0x10000000:            end of aperture
    (II) intel(0): front buffer is not tiled
    (II) intel(0): back buffer is tiled
    (II) intel(0): depth buffer is tiled
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer handle = 0xc0040000
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (II) intel(0): Unable to use TTM-based memory manager with DRM version 1.6
    (II) intel(0): [drm] Registers = 0xdff00000
    (II) intel(0): [drm] ring buffer = 0xc0000000
    (II) intel(0): [drm] init sarea width,height = 2048 x 2048 (pitch 2048)
    (II) intel(0): [drm] Mapping front buffer
    (II) intel(0): [drm] Front Buffer = 0x28008000
    (II) intel(0): [drm] Back Buffer = 0xc5000000
    (II) intel(0): [drm] Depth Buffer = 0xc6000000
    (II) intel(0): [drm] textures = 0xc9000000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (==) intel(0): Write-combining range (0xc0000000,0x10000000)
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (**) intel(0): Option "XaaNoOffscreenPixmaps"
    (II) intel(0): Using XFree86 Acceleration Architecture (XAA)
        Screen to screen bit blits
        Solid filled rectangles
        8x8 mono pattern filled rectangles
        Indirect CPU to Screen color expansion
        Solid Horizontal and Vertical Lines
        Setting up tile and stipple cache:
            32 128x128 slots
            32 256x256 slots
            16 512x512 slots
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x04838000 (pgoffset 18488)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x06000000 (pgoffset 24576)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x09000000 (pgoffset 36864)
    (II) intel(0): Output configuration:
    (II) intel(0):   Pipe A is on
    (II) intel(0):   Display plane A is now enabled and connected to pipe A.
    (II) intel(0):   Pipe B is on
    (II) intel(0):   Display plane B is now enabled and connected to pipe B.
    (II) intel(0):   Output VGA is connected to pipe A
    (II) intel(0):   Output LVDS is connected to pipe B
    (II) intel(0):   Output TV is connected to pipe none
    (**) Option "dpms"
    (**) intel(0): DPMS enabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): [DRI] installation complete
    (II) intel(0): [drm] dma control initialized, using IRQ 16
    (II) intel(0): direct rendering: Enabled
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (WW) intel(0): Option "Enable" is not used
    (--) RandR disabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (WW) AIGLX: 3D driver claims to not support visual 0x23
    (WW) AIGLX: 3D driver claims to not support visual 0x24
    (WW) AIGLX: 3D driver claims to not support visual 0x25
    (WW) AIGLX: 3D driver claims to not support visual 0x26
    (WW) AIGLX: 3D driver claims to not support visual 0x27
    (WW) AIGLX: 3D driver claims to not support visual 0x28
    (WW) AIGLX: 3D driver claims to not support visual 0x29
    (WW) AIGLX: 3D driver claims to not support visual 0x2a
    (WW) AIGLX: 3D driver claims to not support visual 0x2b
    (WW) AIGLX: 3D driver claims to not support visual 0x2c
    (WW) AIGLX: 3D driver claims to not support visual 0x2d
    (WW) AIGLX: 3D driver claims to not support visual 0x2e
    (WW) AIGLX: 3D driver claims to not support visual 0x2f
    (WW) AIGLX: 3D driver claims to not support visual 0x30
    (WW) AIGLX: 3D driver claims to not support visual 0x31
    (WW) AIGLX: 3D driver claims to not support visual 0x32
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 370 x 237
    select returned 1
    (II) USB Mouse: ps2EnableDataReporting: succeeded
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1600x1024"x0.0  108.00  1600 1616 1656 1704  1024 1027 1030 1056 -hsync -vsync (63.4 kHz)
    (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
    (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x0.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
    (II) intel(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
    (II) intel(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
    (II) intel(0): Modeline "1280x960"x59.9  101.25  1280 1360 1488 1696  960 963 967 996 -hsync +vsync (59.7 kHz)
    (II) intel(0): Modeline "1280x1024"x59.9  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): EDID vendor "LCD", prod id 22528
    (II) intel(0): DDCModeFromDetailedTiming: 1280x768 Warning: We only handle seperate sync.
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1600x1024"x0.0  108.00  1600 1616 1656 1704  1024 1027 1030 1056 -hsync -vsync (63.4 kHz)
    (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
    (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) intel(0): Modeline "640x480"x0.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) intel(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
    (II) intel(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
    (II) intel(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
    (II) intel(0): Modeline "1280x960"x59.9  101.25  1280 1360 1488 1696  960 963 967 996 -hsync +vsync (59.7 kHz)
    (II) intel(0): Modeline "1280x1024"x59.9  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    (II) intel(0): EDID vendor "SGX", prod id 1601
    (**) intel(0): Option "ddc" "true"
    (II) intel(0): EDID vendor "LCD", prod id 22528
    (II) intel(0): DDCModeFromDetailedTiming: 1280x768 Warning: We only handle seperate sync.
    select returned 0
    select returned 0
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) intel(0): xf86UnbindGARTMemory: unbind key 0
    (II) intel(0): xf86UnbindGARTMemory: unbind key 1
    (II) intel(0): xf86UnbindGARTMemory: unbind key 2
    (II) intel(0): xf86UnbindGARTMemory: unbind key 3
    (II) intel(0): xf86UnbindGARTMemory: unbind key 4
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x04838000 (pgoffset 18488)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x06000000 (pgoffset 24576)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x09000000 (pgoffset 36864)
    Error in I830WaitLpRing(), timeout for 2 seconds
    pgetbl_ctl: 0x4ffc0001 pgetbl_err: 0x0
    ipeir: 0 iphdr: 7dc41ddc
    LP ring tail: 8 head: 0 len: 1f001 start 0
    eir: 0 esr: 0 emr: ffff
    instdone: ffc1 instpm: 0
    memmode: 108 instps: 14cf
    hwstam: ffff ier: 2 imr: ffff iir: 0
    Ring at virtual 0xa79b1000 head 0x0 tail 0x8 count 2
        0001ff80: 00000000
        0001ff84: 00000000
        0001ff88: 00000000
        0001ff8c: 00000000
        0001ff90: 00000000
        0001ff94: 00000000
        0001ff98: 00000000
        0001ff9c: 00000000
        0001ffa0: 00000000
        0001ffa4: 00000000
        0001ffa8: 00000000
        0001ffac: 00000000
        0001ffb0: 00000000
        0001ffb4: 00000000
        0001ffb8: 00000000
        0001ffbc: 00000000
        0001ffc0: 00000000
        0001ffc4: 00000000
        0001ffc8: 00000000
        0001ffcc: 00000000
        0001ffd0: 00000000
        0001ffd4: 00000000
        0001ffd8: 00000000
        0001ffdc: 00000000
        0001ffe0: 00000000
        0001ffe4: 00000000
        0001ffe8: 00000000
        0001ffec: 00000000
        0001fff0: 00000000
        0001fff4: 00000000
        0001fff8: 00000000
        0001fffc: 00000000
        00000000: 02000011
    Ring end
    space: 131056 wanted 131064
    (II) intel(0): [drm] removed 1 reserved context for kernel
    (II) intel(0): [drm] unmapping 8192 bytes of SAREA 0xf8c8a000 at 0xb7b25000
    (II) intel(0): [drm] Closed DRM master.
    Fatal server error:
    lockup
    (II) AIGLX: Suspending AIGLX clients for VT switch
    Error in I830WaitLpRing(), timeout for 2 seconds
    pgetbl_ctl: 0x4ffc0001 pgetbl_err: 0x0
    ipeir: 0 iphdr: 7dc41ddc
    LP ring tail: 10 head: 0 len: 1f001 start 0
    eir: 0 esr: 0 emr: ffff
    instdone: ffc1 instpm: 0
    memmode: 108 instps: 14cf
    hwstam: ffff ier: 2 imr: ffff iir: 0
    Ring at virtual 0xa79b1000 head 0x0 tail 0x10 count 4
        0001ff80: 00000000
        0001ff84: 00000000
        0001ff88: 00000000
        0001ff8c: 00000000
        0001ff90: 00000000
        0001ff94: 00000000
        0001ff98: 00000000
        0001ff9c: 00000000
        0001ffa0: 00000000
        0001ffa4: 00000000
        0001ffa8: 00000000
        0001ffac: 00000000
        0001ffb0: 00000000
        0001ffb4: 00000000
        0001ffb8: 00000000
        0001ffbc: 00000000
        0001ffc0: 00000000
        0001ffc4: 00000000
        0001ffc8: 00000000
        0001ffcc: 00000000
        0001ffd0: 00000000
        0001ffd4: 00000000
        0001ffd8: 00000000
        0001ffdc: 00000000
        0001ffe0: 00000000
        0001ffe4: 00000000
        0001ffe8: 00000000
        0001ffec: 00000000
        0001fff0: 00000000
        0001fff4: 00000000
        0001fff8: 00000000
        0001fffc: 00000000
        00000000: 02000011
    Ring end
    space: 131048 wanted 131064
    FatalError re-entered, aborting
    lockup
    -----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----

    Thanks to several remarks and suggestions I have found in this forum, I have been
    able to fix this problem. Commenting out the VBE section of my /etc/hibernate/common.conf
    file did it. That is, after commenting the following lines,
    ### vbetool
    #EnableVbetool yes
    #RestoreVbeStateFrom /var/lib/vbetool/vbestate
    #VbetoolPost yes
    #RestoreVCSAData yes
    hibernation works as it used to. Suspend to disk and suspend to ram are both
    operational (with a vanilla kernel 2.6.23.1).
    Manuel

  • Firefox box around zoomed out images issue w/ (xf86-video-intel)

    When I zoomout on a page firefox displays a insetted box around my images.
    Most notably in my webmail client, however it happens even on the forums if I zoomout.
    Regualar zoom: http://world.pyther.net/files/Firefox/regular_zoom.png (The way it should look)
    Zoomed Out: http://world.pyther.net/files/Firefox/zoom_out.png (Inset boxes around images)
    This happens with both the offical arch build of firefox and the spookyet build. I have no idea how to fix this, it is very annoying!
    Any help would be great!
    EDIT:
    After doing some more research I have narrowed this down to being an issue with xf86-video-intel. The problem does not happen if I use the xf86-video-vesa driver. I have filed a bug report at https://bugzilla.mozilla.org/show_bug.cgi?id=468366
    Last edited by pyther (2008-12-07 21:37:12)

    Bug reported, anyone thing I need to add anything else?
    https://bugzilla.mozilla.org/show_bug.cgi?id=414928

  • [Solved] xf86-video-Intel-2.99.912-1 breaks xorg

    After the update yesterday of the this driver my xorg does not start anymore.
    I reverted to xf86-video-Intel-2.99.911-2 and the problem went away.
    Can someone please shed some light on this.
    Below is the output of Xorg.0.log.
    [ 1261.238]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 1261.239] X Protocol Version 11, Revision 0
    [ 1261.240] Build Operating System: Linux 3.14.0-4-ARCH i686
    [ 1261.240] Current Operating System: Linux liberty 3.14.6-1-ARCH #1 SMP PREEMPT Sun Jun 8 10:57:49 CEST 2014 i686
    [ 1261.240] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda1 rw ipv6.disable=1 initrd=../initramfs-linux.img systemd.unit=multi-user.target
    [ 1261.242] Build Date: 14 April 2014 08:41:02AM
    [ 1261.242]
    [ 1261.243] Current version of pixman: 0.32.4
    [ 1261.245] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1261.245] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1261.249] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 16 13:26:53 2014
    [ 1261.250] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1261.251] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 1261.251] (==) No Layout section. Using the first Screen section.
    [ 1261.251] (==) No screen section available. Using defaults.
    [ 1261.251] (**) |-->Screen "Default Screen Section" (0)
    [ 1261.251] (**) | |-->Monitor "<default monitor>"
    [ 1261.252] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 1261.252] (**) | |-->Device "Intel Graphics"
    [ 1261.252] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 1261.252] (==) Automatically adding devices
    [ 1261.252] (==) Automatically enabling devices
    [ 1261.252] (==) Automatically adding GPU devices
    [ 1261.252] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1261.252] Entry deleted from font path.
    [ 1261.252] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1261.252] Entry deleted from font path.
    [ 1261.252] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1261.252] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1261.252] Entry deleted from font path.
    [ 1261.252] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1261.252] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 1261.252] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 1261.252] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 1261.252] (II) Loader magic: 0x8264660
    [ 1261.252] (II) Module ABI versions:
    [ 1261.252] X.Org ANSI C Emulation: 0.4
    [ 1261.252] X.Org Video Driver: 15.0
    [ 1261.252] X.Org XInput driver : 20.0
    [ 1261.252] X.Org Server Extension : 8.0
    [ 1261.252] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 1261.254] (--) PCI:*(0:0:2:0) 8086:2572:1014:0285 rev 2, Mem @ 0xc8000000/134217728, 0xc0000000/524288, I/O @ 0x00001800/8
    [ 1261.254] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 1261.256] Initializing built-in extension Generic Event Extension
    [ 1261.257] Initializing built-in extension SHAPE
    [ 1261.258] Initializing built-in extension MIT-SHM
    [ 1261.259] Initializing built-in extension XInputExtension
    [ 1261.260] Initializing built-in extension XTEST
    [ 1261.261] Initializing built-in extension BIG-REQUESTS
    [ 1261.262] Initializing built-in extension SYNC
    [ 1261.263] Initializing built-in extension XKEYBOARD
    [ 1261.265] Initializing built-in extension XC-MISC
    [ 1261.266] Initializing built-in extension SECURITY
    [ 1261.267] Initializing built-in extension XINERAMA
    [ 1261.268] Initializing built-in extension XFIXES
    [ 1261.269] Initializing built-in extension RENDER
    [ 1261.270] Initializing built-in extension RANDR
    [ 1261.272] Initializing built-in extension COMPOSITE
    [ 1261.273] Initializing built-in extension DAMAGE
    [ 1261.274] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1261.275] Initializing built-in extension DOUBLE-BUFFER
    [ 1261.276] Initializing built-in extension RECORD
    [ 1261.278] Initializing built-in extension DPMS
    [ 1261.279] Initializing built-in extension Present
    [ 1261.280] Initializing built-in extension DRI3
    [ 1261.281] Initializing built-in extension X-Resource
    [ 1261.283] Initializing built-in extension XVideo
    [ 1261.284] Initializing built-in extension XVideo-MotionCompensation
    [ 1261.285] Initializing built-in extension XFree86-VidModeExtension
    [ 1261.286] Initializing built-in extension XFree86-DGA
    [ 1261.288] Initializing built-in extension XFree86-DRI
    [ 1261.289] Initializing built-in extension DRI2
    [ 1261.289] (II) "glx" will be loaded by default.
    [ 1261.289] (II) LoadModule: "dri2"
    [ 1261.289] (II) Module "dri2" already built-in
    [ 1261.289] (II) LoadModule: "glamoregl"
    [ 1261.290] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 1261.293] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 1261.293] compiled for 1.15.0, module version = 0.6.0
    [ 1261.293] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1261.293] (II) LoadModule: "glx"
    [ 1261.293] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1261.293] (II) Module glx: vendor="X.Org Foundation"
    [ 1261.293] compiled for 1.15.1, module version = 1.0.0
    [ 1261.293] ABI class: X.Org Server Extension, version 8.0
    [ 1261.293] (==) AIGLX enabled
    [ 1261.295] Loading extension GLX
    [ 1261.295] (II) LoadModule: "intel"
    [ 1261.295] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 1261.296] (II) Module intel: vendor="X.Org Foundation"
    [ 1261.296] compiled for 1.15.1, module version = 2.99.912
    [ 1261.296] Module class: X.Org Video Driver
    [ 1261.296] ABI class: X.Org Video Driver, version 15.0
    [ 1261.296] (II) intel: Driver for Intel(R) 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
    [ 1261.296] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 1261.297] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 1261.297] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 1261.297] (++) using VT number 1
    [ 1261.297] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 1261.297] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 1261.297] (==) intel(0): RGB weight 888
    [ 1261.297] (==) intel(0): Default visual is TrueColor
    [ 1261.297] (**) intel(0): Option "AccelMethod" "uxa"
    [ 1261.297] (--) intel(0): Integrated Graphics Chipset: Intel(R) 865G
    [ 1261.297] (**) intel(0): Relaxed fencing disabled
    [ 1261.297] (**) intel(0): Wait on SwapBuffers? enabled
    [ 1261.297] (**) intel(0): Triple buffering? enabled
    [ 1261.297] (**) intel(0): Framebuffer tiled
    [ 1261.297] (**) intel(0): Pixmaps tiled
    [ 1261.297] (**) intel(0): 3D buffers tiled
    [ 1261.297] (**) intel(0): SwapBuffers wait enabled
    [ 1261.297] (==) intel(0): video overlay key set to 0x101fe
    [ 1261.436] (II) intel(0): Output VGA1 has no monitor section
    [ 1261.576] (II) intel(0): EDID for output VGA1
    [ 1261.576] (II) intel(0): Manufacturer: GSM Model: 4bc1 Serial#: 16843009
    [ 1261.576] (II) intel(0): Year: 2009 Week: 1
    [ 1261.576] (II) intel(0): EDID Version: 1.3
    [ 1261.576] (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 1261.576] (II) intel(0): Sync: Separate
    [ 1261.576] (II) intel(0): Max Image Size [cm]: horiz.: 41 vert.: 23
    [ 1261.576] (II) intel(0): Gamma: 2.20
    [ 1261.576] (II) intel(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 1261.576] (II) intel(0): First detailed timing is preferred mode
    [ 1261.576] (II) intel(0): redX: 0.642 redY: 0.334 greenX: 0.302 greenY: 0.611
    [ 1261.576] (II) intel(0): blueX: 0.144 blueY: 0.069 whiteX: 0.313 whiteY: 0.329
    [ 1261.576] (II) intel(0): Supported established timings:
    [ 1261.577] (II) intel(0): 720x400@70Hz
    [ 1261.577] (II) intel(0): 640x480@60Hz
    [ 1261.577] (II) intel(0): 640x480@75Hz
    [ 1261.577] (II) intel(0): 800x600@60Hz
    [ 1261.577] (II) intel(0): 800x600@75Hz
    [ 1261.577] (II) intel(0): 832x624@75Hz
    [ 1261.577] (II) intel(0): 1024x768@60Hz
    [ 1261.577] (II) intel(0): 1024x768@75Hz
    [ 1261.577] (II) intel(0): Manufacturer's mask: 0
    [ 1261.577] (II) intel(0): Supported standard timings:
    [ 1261.577] (II) intel(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273
    [ 1261.577] (II) intel(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293
    [ 1261.577] (II) intel(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    [ 1261.577] (II) intel(0): #3: hsize: 1152 vsize 864 refresh: 60 vid: 16497
    [ 1261.577] (II) intel(0): #4: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 1261.577] (II) intel(0): Supported detailed timing:
    [ 1261.577] (II) intel(0): clock: 85.0 MHz Image Size: 410 x 230 mm
    [ 1261.577] (II) intel(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 1261.577] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 1261.577] (II) intel(0): Supported detailed timing:
    [ 1261.577] (II) intel(0): clock: 79.5 MHz Image Size: 410 x 230 mm
    [ 1261.577] (II) intel(0): h_active: 1280 h_sync: 1344 h_sync_end 1472 h_blank_end 1664 h_border: 0
    [ 1261.577] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 778 v_blanking: 798 v_border: 0
    [ 1261.577] (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 61 kHz, PixClock max 95 MHz
    [ 1261.577] (II) intel(0): Monitor name: M197WDP
    [ 1261.577] (II) intel(0): EDID (in hex):
    [ 1261.577] (II) intel(0): 00ffffffffffff001e6dc14b01010101
    [ 1261.577] (II) intel(0): 0113010308291778ea66f5a4554d9c24
    [ 1261.577] (II) intel(0): 115054a56a00314f454f614f71408100
    [ 1261.577] (II) intel(0): 010101010101342150b051001b304070
    [ 1261.577] (II) intel(0): 36009ae61000001e0e1f008051001e30
    [ 1261.577] (II) intel(0): 408037009ae61000001c000000fd0038
    [ 1261.577] (II) intel(0): 4b1e3d09000a202020202020000000fc
    [ 1261.577] (II) intel(0): 004d3139375744500a202020202000e7
    [ 1261.577] (II) intel(0): Printing probed modes for output VGA1
    [ 1261.577] (II) intel(0): Modeline "1360x768"x59.7 85.00 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.4 kHz eP)
    [ 1261.577] (II) intel(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz e)
    [ 1261.577] (II) intel(0): Modeline "1152x864"x60.0 81.58 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz)
    [ 1261.577] (II) intel(0): Modeline "1280x768"x59.9 79.50 1280 1344 1472 1664 768 771 778 798 -hsync +vsync (47.8 kHz e)
    [ 1261.577] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1261.577] (II) intel(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 1261.577] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1261.578] (II) intel(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 1261.578] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1261.578] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1261.578] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1261.578] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1261.578] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1261.578] (II) intel(0): Output VGA1 connected
    [ 1261.578] (II) intel(0): Using exact sizes for initial modes
    [ 1261.578] (II) intel(0): Output VGA1 using initial mode 1360x768
    [ 1261.578] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1261.578] (II) intel(0): Kernel page flipping support detected, enabling
    [ 1261.578] (==) intel(0): DPI set to (96, 96)
    [ 1261.578] (II) Loading sub module "fb"
    [ 1261.578] (II) LoadModule: "fb"
    [ 1261.578] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1261.579] (II) Module fb: vendor="X.Org Foundation"
    [ 1261.579] compiled for 1.15.1, module version = 1.0.0
    [ 1261.579] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1261.579] (II) Loading sub module "dri2"
    [ 1261.579] (II) LoadModule: "dri2"
    [ 1261.579] (II) Module "dri2" already built-in
    [ 1261.579] (II) Loading sub module "dri3"
    [ 1261.579] (II) LoadModule: "dri3"
    [ 1261.579] (WW) Warning, couldn't open module dri3
    [ 1261.579] (II) UnloadModule: "dri3"
    [ 1261.579] (II) Unloading dri3
    [ 1261.579] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
    [ 1261.579] (==) Depth 24 pixmap format is 32 bpp
    [ 1261.579] (II) intel(0): Allocated new frame buffer 1408x768 stride 8192, tiled
    [ 1261.580] (II) UXA(0): Driver registered support for the following operations:
    [ 1261.580] (II) solid
    [ 1261.580] (II) copy
    [ 1261.580] (II) composite (RENDER acceleration)
    [ 1261.580] (II) put_image
    [ 1261.580] (II) get_image
    [ 1261.580] (II) intel(0): [DRI2] Setup complete
    [ 1261.580] (II) intel(0): [DRI2] DRI driver: i915
    [ 1261.580] (II) intel(0): [DRI2] VDPAU driver: i915
    [ 1261.580] (==) intel(0): Backing store enabled
    [ 1261.580] (==) intel(0): Silken mouse enabled
    [ 1261.580] (II) intel(0): Initializing HW Cursor
    [ 1261.580] (II) intel(0): Use legacy UXA acceleration.
    [ 1261.580] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1261.580] (==) intel(0): DPMS enabled
    [ 1261.580] (==) intel(0): Intel XvMC decoder disabled
    [ 1261.580] (II) intel(0): Set up overlay video
    [ 1261.580] (II) intel(0): DRI2: Enabled
    [ 1261.580] (II) intel(0): DRI3: Disabled
    [ 1261.580] (==) intel(0): hotplug detection: "enabled"
    [ 1261.596] (--) RandR disabled
    [ 1261.618] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1261.618] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1261.618] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1261.618] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1261.618] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1261.618] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1261.618] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 1261.618] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 1261.618] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1261.618] (II) AIGLX: Loaded and initialized i915
    [ 1261.618] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 1261.619] (EE)
    Fatal server error:
    [ 1261.619] (EE) failed to create screen resources(EE)
    [ 1261.620] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 1261.620] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 1261.620] (EE)
    [ 1261.620] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 1261.639] (EE) Server terminated with error (1). Closing log file.
    Last edited by libernux (2014-06-16 14:44:54)

    Exact same problem.
    Lenovo S12 (Intel Atom)
    pacman.log...
    [2014-06-15 06:41] [PACMAN] upgraded xf86-video-intel (2.99.911-2 -> 2.99.912-1)
    Xorg.0.log...
    [ 1472.441] (II) Loading sub module "fb"
    [ 1472.441] (II) LoadModule: "fb"
    [ 1472.441] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1472.443] (II) Module fb: vendor="X.Org Foundation"
    [ 1472.443] compiled for 1.15.1, module version = 1.0.0
    [ 1472.443] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1472.443] (II) Loading sub module "dri2"
    [ 1472.443] (II) LoadModule: "dri2"
    [ 1472.443] (II) Module "dri2" already built-in
    [ 1472.443] (II) Loading sub module "dri3"
    [ 1472.444] (II) LoadModule: "dri3"
    [ 1472.445] (WW) Warning, couldn't open module dri3
    [ 1472.445] (II) UnloadModule: "dri3"
    [ 1472.445] (II) Unloading dri3
    [ 1472.445] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
    <--snip-->
    [ 1472.513] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1472.513] (II) AIGLX: Loaded and initialized i915
    [ 1472.513] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 1472.515] (EE)
    Fatal server error:
    [ 1472.515] (EE) failed to create screen resources(EE)
    [ 1472.515] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 1472.515] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 1472.515] (EE)
    [ 1472.515] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 1472.539] (EE) Server terminated with error (1). Closing log file.
    Edit: Bug filed https://bugs.archlinux.org/task/40860 Monday, 16 June 2014, 22:46 GMT+8
    Last edited by keepitsimpleengineer (2014-06-16 14:49:59)

Maybe you are looking for

  • Trying to Imitate the html POST  method with an applet

    I am trying to imitate the POST method with an applet, so that I can eventually send sound from a microphone to a PHP script which will store it in a file on a server. I am starting out by trying to post a simple line of text by making the PHP script

  • How do I use one song for all Theme sub-menus?

    I'm using IDVD '08.I have created a theme with 3 chapter selection sub menus. Is there any way to choose a single song that plays from start to finish (and then loops normally) regardless of which submenu you happen to be in? I know how to add the sa

  • Z2 Tablet LTE - 2 questions?!

    basically I bought a Z2 LTE Tablet 2nd hand from my local cash converters, will this be under warranty if something breaks? and: I have android L on my device, 5.0.2 but according to your site: Latest available software: 23.1.A.1.28 there's a new upd

  • Look for histroy of sql statement executed in database

    is there a way to look for histroy or list of sql statement executed in database.? similar to history command in linux or bash shell.

  • How do i remove my account from spotify

    i don't want to have a subscription with spotify anymore