[SOLVED] Trouble Building Xorg-Server 1.6.1-1 (Modified PKGBUILD)

ever since the release of xorg-server 1.5.3, i've been using a modified
PKGBUILD to build xorg-server sans hal and dbus.  (not gonna try
justifying it again; that'd just lead to yet another flame war.)
i've never had a problem until the 1.6.1-1 PKGBUILD, which adds the lines:
libtoolize --force || return 1
aclocal || return 1
autoconf || return 1
automake --add-missing || return 1
after applying patches and before running the configure.  these added lines produce:
libtoolize: putting auxiliary files in `.'.
libtoolize: linking file `./ltmain.sh'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros
in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
hw/dmx/doc/Makefile.am:24: BUILD_LINUXDOC does not appear in AM_CONDITIONAL
hw/dmx/doc/Makefile.am:27: BUILD_PDFDOC does not appear in AM_CONDITIONAL
hw/xfree86/doc/sgml/Makefile.am:24: BUILD_LINUXDOC does not appear in
AM_CONDITIONAL
hw/xfree86/doc/sgml/Makefile.am:27: BUILD_PDFDOC does not appear in
AM_CONDITIONAL
==> ERROR: Build Failed.
Aborting...
my modified PKGBUILD is build.  please note that i *have* tried
reverting my changes (the commented patches), to no avail.
as i'm pretty clueless vis-a-vis makefiles and the autoconf system,
could somehow point me in the direction of a fix?
many thanks,
kludge
# $Id: PKGBUILD 21903 2008-12-17 20:32:54Z jgc $
# Maintainer: Alexander Baldeck <[email protected]>
# Contributor: Jan de Groot <[email protected]>
pkgname=xorg-server
pkgver=1.6.1
pkgrel=1
pkgdesc="X.Org X servers"
arch=('i686' 'x86_64')
license=('custom')
url="http://xorg.freedesktop.org"
depends=('libgl' 'libxfont>=1.4.0' 'openssl>=0.9.8j' 'libpciaccess>=0.10.5' 'libxv>=1.0.4' 'pixman>=0.14.0' 'xcursor-themes' 'xkeyboard-config>=1.5' 'xorg-server-utils' 'xorg-fonts-misc' 'xbitmaps' 'diffutils')
makedepends=('libx11>=1.2' 'mesa>=7.4' 'xf86driproto>=2.0.4' 'xtrans>=1.2.3' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'renderproto>=0.9.3' 'xcmiscproto>=1.1.2' 'bigreqsproto>=1.0.2' 'resourceproto>=1.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'scrnsaverproto>=1.1.0' 'libxinerama>=1.0.3' 'xf86dgaproto>=2.0.3' 'recordproto>=1.13.2' 'libgl>=7.4' 'glproto>=1.4.9')
#optdepends=( 'xf86-input-evdev: to provide input device hotplugging'
# 'hal>=0.5.11: to provide input devices for hotplugging' )
options=('!libtool')
provides=('x-server' ) # 'xorg-server')
conflicts=('catalyst-utils<=9.2')
groups=('xorg')
install=xorg-server.install
source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
xorg-redhat-die-ugly-pattern-die-die-die.patch
hal-wait.patch)
md5sums=('ed0878bf32a24d4948c3b8a122a39eff'
'1a336eb22e27cbf443ec5a2ecddfa93c'
'f16d2caef84e1a9c4075b6c5e145512d')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Get rid of the ugly pattern
patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
# Fix dbus config path - removed b/c no dbus config'd
# sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
# Revert waiting for hal, assume hal won't show up when initial connect fails
# commented out b/c no hal config'd
# patch -R -Np1 -i "${srcdir}/hal-wait.patch" || return 1
libtoolize --force || return 1
aclocal || return 1
autoconf || return 1
automake --add-missing || return 1
# --enable-config-{dbus,hal} switched to --disable
# to disable hotplugging and dependencies
./configure --prefix=/usr \
--enable-ipv6 \
--enable-dri \
--disable-dmx \
--enable-xvfb \
--enable-xnest \
--enable-composite \
--enable-xcsecurity \
--enable-xorg \
--enable-xephyr \
--enable-glx-tls \
--enable-kdrive \
--enable-install-setuid \
--disable-config-hal \
--disable-config-dbus \
--enable-record \
--disable-xfbdev \
--disable-xfake \
--disable-xsdl \
--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
# 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
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
Last edited by kludge (2009-05-01 17:25:39)

Not any help to your error but have you tried the one in aur with disabled dbus and hal?
I've been using it for a week or so with no problems and it built fine.
http://aur.archlinux.org/packages.php?ID=23750

Similar Messages

  • [Solved] Can't build Xorg-Server-Git.

    Hello
    I want to build xorg-server-git from AUR I modifeted PKGBUILD becouse old can't be build.
    That's my PKGBUILD:
    pkgname=xorg-server-git
    pkgver=20090731
    pkgrel=1
    pkgdesc="X.Org X servers"
    arch=('x86_64')
    license=('custom')
    url="http://xorg.freedesktop.org"
    depends=('libxfont>=1.4.0' 'openssl>=0.9.8k' 'libpciaccess>=0.10.6' 'libxv>=1.0.4' 'pixman>=0.14.0' 'xkeyboard-config>=1.6' 'xorg-server-utils' 'xorg-fonts-misc' 'xbitmaps' 'diffutils' )
    makedepends=('libx11>=1.2.1' 'mesa>=7.5' 'xf86driproto>=2.0.4' 'xtrans>=1.2.3' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'renderproto>=0.9.3' 'xcmiscproto>=1.1.2' 'bigreqsproto>=1.0.2' 'resourceproto>=1.0.2' 'videoproto>=2.2.2' 'compositeproto>=0.4' 'scrnsaverproto>=1.1.0' 'libxinerama>=1.0.3' 'xf86dgaproto>=2.0.3' 'recordproto>=1.13.2' 'glproto>=1.4.9' 'xorg-util-macros')
    conflicts=('catalyst-utils<=9.2')
    options=('!libtool')
    _gitver=1.6.2.1
    provides=('x-server')
    groups=('xorg')
    install=xorg-server.install
    _gitroot="git://anongit.freedesktop.org/git/xorg/xserver"
    _gitname="xserver"
    source=("xorg-redhat-die-ugly-pattern-die-die-die.patch")
    md5sums=('1a336eb22e27cbf443ec5a2ecddfa93c')
    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
    cp -a "${srcdir}/$_gitname/" "${srcdir}/$_gitname-build/"
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    cd "${srcdir}/$_gitname-build"
    msg "Patching sources..."
    # Fix dbus config path
    sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    msg "Preparing sources for configure..."
    autoreconf -v --install || return 1
    msg "Starting configure for: $pkgname"
    ./configure --prefix=/usr \
    --disable-ipv6 \
    --disable-dri2 \
    --disable-dri \
    --disable-dmx \
    --disable-xvfb \
    --disable-xnest \
    --disable-composite \
    --disable-xcsecurity \
    --enable-xorg \
    --disable-xephyr \
    --disable-glx-tls \
    --disable-kdrive \
    --enable-install-setuid \
    --disable-config-hal \
    --enable-config-dbus \
    --disable-record \
    --disable-xfbdev \
    --disable-xfake \
    --disable-xsdl \
    --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 \
    # --without-dri-driver-path=/usr/lib/xorg/modules/dri || return 1
    msg "Starting make..."
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    msg "Creating the appropriate X.org directories..."
    install -m755 -d "${pkgdir}/etc/X11" || return 1
    install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    msg "Backing up libwfb.so..."
    mv "${pkgdir}/usr/lib/xorg/modules/libwfb.so" \
    "${pkgdir}/usr/lib/xorg/modules/libwfb.so.1.4" || return 1
    msg "Fixes for non-Mesa drivers..."
    ln -s "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    msg "Cleaning build area..."
    rm -rf "${srcdir}/$_gitname-build"
    rm -rf "${pkgdir}/var/log"
    And It's my error when i try to make it:
    In file included from xfixesint.h:63,
    from xfixes.c:54:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
    In file included from xfixesint.h:63,
    from saveset.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
    make[1]: *** [xfixes.lo] Błąd 1
    make[1]: *** Oczekiwanie na niezakończone zadania....
    make[1]: *** [saveset.lo] Błąd 1
    In file included from xfixesint.h:63,
    from region.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
    In file included from xfixesint.h:63,
    from select.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
    In file included from xfixesint.h:63,
    from cursor.c:54:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: Nie ma takiego pliku ani katalogu
    region.c: In function 'ProcXFixesSetWindowShapeRegion':
    region.c:695: error: 'ShapeBounding' undeclared (first use in this function)
    region.c:695: error: (Each undeclared identifier is reported only once
    region.c:695: error: for each function it appears in.)
    region.c:696: error: 'ShapeClip' undeclared (first use in this function)
    region.c:697: error: 'ShapeInput' undeclared (first use in this function)
    make[1]: *** [region.lo] Błąd 1
    make[1]: *** [select.lo] Błąd 1
    make[1]: *** [cursor.lo] Błąd 1
    make: *** [all-recursive] Błąd 1
    ==> BŁĄD: Budowanie nie powiodło się.
    Przerywam...
    Thanks for help and advice
    Last edited by SpeedVin (2009-07-31 14:06:30)

    flamelab wrote:
    Can you please post an output of this error with english messages ? I don't understand Polish
    It says "No such file or directory" I suppose ?
    Yes that's right I'm not good at tranlate but I will try
    In file included from xfixesint.h:63,
    from saveset.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
    In file included from xfixesint.h:63,
    from cursor.c:54:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
    make[1]: *** [saveset.lo] Error 1
    make[1]: *** Waiting for not end tasks....
    In file included from xfixesint.h:63,
    from region.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
    make[1]: *** [cursor.lo] Error 1
    In file included from xfixesint.h:63,
    from select.c:27:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
    region.c: In function 'ProcXFixesSetWindowShapeRegion':
    region.c:695: error: 'ShapeBounding' undeclared (first use in this function)
    region.c:695: error: (Each undeclared identifier is reported only once
    region.c:695: error: for each function it appears in.)
    region.c:696: error: 'ShapeClip' undeclared (first use in this function)
    region.c:697: error: 'ShapeInput' undeclared (first use in this function)
    make[1]: *** [select.lo] Błąd 1
    In file included from xfixesint.h:63,
    from xfixes.c:54:
    /usr/include/X11/extensions/xfixesproto.h:51:34: error: X11/extensions/shape.h: No such file or directory
    make[1]: *** [region.lo] Error 1
    make[1]: *** [xfixes.lo] Error 1
    make: *** [all-recursive] Error 1
    ==> Error: Make fail
    Last edited by SpeedVin (2009-07-31 14:02:05)

  • [SOLVED] building xorg-server: libgl & nvidia-utils conflict

    Hello!
    I somehow feel like I'm totally missing the point, but...
    edit: although I think (not sure any more) this was the same procedure when I first compiled xorg-server, I maybe should mention, I'm now using the testing xorg.
    I still don't really understand, why I need libgl to build xorg-server. Aren't nvidia-utils supposed to replace that? Is there a way of building xorg-server with nvidia-utils instead of libgl and if yes: are there (dis-/) advantages doing so other than not having to uninstall nvidia-utils while compiling xorg-server?
    Or the other way around: Perhaps it's just me, but I feel "funny" having to remove something that's vital to my installation before I can compile something that's vital to my installation, too... so is it really OK to remove nvidia-utils and compile xorg-server without it or am I doing it wrong?
    Thank you for enlightening me
    Last edited by whoops (2009-04-07 02:20:51)

    Well AFAIK, The nVIDIA closed source drivers haven't caught up with xorg server 1.6 which is why you need libgl to build xorg-xserver 1.6+. I personally perfer the open source drivers over Fglrx (FireGL and Radeon X) and the closed source nVIDIA drivers as well.
    edit: xorg server is 1.6 in testing so if you want to compile from source, and have the closed source nvidia drivers, you would need to compile xorg server 1.5.XX
    P.S. You cannot have both, the nvidia drivers and the open source drivers (libgl), running at the same time which is why the nvidia-* packages are to be removed.
    Cheers!
    Last edited by Neo_The_User (2009-03-30 16:53:28)

  • [SOLVED] Trouble starting Xorg on Macbook Pro 7,1

    I'm trying to set up Xorg on my 13" Macbook Pro 7,1.  Every time I run startx, I get a blank screen and have to do a hard reset.  This is on a brand new install.  I've installed the wireless drivers, connected to the network, upgraded any packages needing it (pacman -Syuu), installed vim and yaourt, and created a non-privileged user.  I did not upgrade kernel26 or kernel26-headers because they fail to boot (I think I need the physical mode patch).
    Here's what I've done so far:
    pacman -S xorg-server xorg-utils xorg-xinit xorg-twm xterm
    pacman -S nvidia nvidia-utils
    (reboot)
    nvidia-xconfig
    pacman -S acpid hal
    /etc/rc.d/hal start
    (log in as non-privileged user)
    startx
    The screen goes black, and then nothing happens.  I've tried it both with and without acpid and hal.
    Here is my xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 280.11 ([email protected]) Thu Jul 21 14:16:58 PDT 2011
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    And my Xorg.0.log:
    [ 237.871]
    X.Org X Server 1.10.3
    Release Date: 2011-07-08
    [ 237.871] X Protocol Version 11, Revision 0
    [ 237.871] Build Operating System: Linux 2.6.39-ARCH x86_64
    [ 237.872] Current Operating System: Linux jhallLinux 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011 x86_64
    [ 237.872] Kernel command line: BOOT_IMAGE=/boot/vmlinuz26 root=/dev/sda3 reboot=pci
    [ 237.872] Build Date: 09 July 2011 07:52:32AM
    [ 237.873]
    [ 237.873] Current version of pixman: 0.22.2
    [ 237.873] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 237.873] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 237.874] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 27 21:24:48 2011
    [ 237.889] (==) Using config file: "/etc/X11/xorg.conf"
    [ 237.889] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 237.916] (==) ServerLayout "Layout0"
    [ 237.916] (**) |-->Screen "Screen0" (0)
    [ 237.916] (**) | |-->Monitor "Monitor0"
    [ 237.916] (**) | |-->Device "Device0"
    [ 237.916] (**) |-->Input Device "Keyboard0"
    [ 237.916] (**) |-->Input Device "Mouse0"
    [ 237.917] (==) Automatically adding devices
    [ 237.917] (==) Automatically enabling devices
    [ 237.949] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 237.949] Entry deleted from font path.
    [ 237.949] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 237.949] Entry deleted from font path.
    [ 237.949] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 237.949] Entry deleted from font path.
    [ 237.949] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 237.950] Entry deleted from font path.
    [ 237.950] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 237.950] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 237.950] Entry deleted from font path.
    [ 237.950] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 237.950] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 237.950] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 237.950] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 237.950] (WW) Disabling Keyboard0
    [ 237.950] (WW) Disabling Mouse0
    [ 237.950] (II) Loader magic: 0x7d3440
    [ 237.950] (II) Module ABI versions:
    [ 237.950] X.Org ANSI C Emulation: 0.4
    [ 237.950] X.Org Video Driver: 10.0
    [ 237.950] X.Org XInput driver : 12.2
    [ 237.950] X.Org Server Extension : 5.0
    [ 237.951] (--) PCI:*(0:4:0:0) 10de:08a0:106b:00c2 rev 162, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00001000/128, BIOS @ 0x????????/131072
    [ 237.952] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 237.952] (II) LoadModule: "extmod"
    [ 237.959] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 237.967] (II) Module extmod: vendor="X.Org Foundation"
    [ 237.967] compiled for 1.10.3, module version = 1.0.0
    [ 237.967] Module class: X.Org Server Extension
    [ 237.967] ABI class: X.Org Server Extension, version 5.0
    [ 237.967] (II) Loading extension MIT-SCREEN-SAVER
    [ 237.967] (II) Loading extension XFree86-VidModeExtension
    [ 237.967] (II) Loading extension XFree86-DGA
    [ 237.967] (II) Loading extension DPMS
    [ 237.967] (II) Loading extension XVideo
    [ 237.967] (II) Loading extension XVideo-MotionCompensation
    [ 237.967] (II) Loading extension X-Resource
    [ 237.967] (II) LoadModule: "dbe"
    [ 237.967] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 237.968] (II) Module dbe: vendor="X.Org Foundation"
    [ 237.968] compiled for 1.10.3, module version = 1.0.0
    [ 237.968] Module class: X.Org Server Extension
    [ 237.968] ABI class: X.Org Server Extension, version 5.0
    [ 237.968] (II) Loading extension DOUBLE-BUFFER
    [ 237.968] (II) LoadModule: "glx"
    [ 237.968] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 238.562] (II) Module glx: vendor="NVIDIA Corporation"
    [ 238.569] compiled for 4.0.2, module version = 1.0.0
    [ 238.569] Module class: X.Org Server Extension
    [ 238.569] (II) NVIDIA GLX Module 280.11 Thu Jul 21 14:13:06 PDT 2011
    [ 238.570] (II) Loading extension GLX
    [ 238.570] (II) LoadModule: "record"
    [ 238.570] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 238.578] (II) Module record: vendor="X.Org Foundation"
    [ 238.578] compiled for 1.10.3, module version = 1.13.0
    [ 238.578] Module class: X.Org Server Extension
    [ 238.578] ABI class: X.Org Server Extension, version 5.0
    [ 238.578] (II) Loading extension RECORD
    [ 238.578] (II) LoadModule: "dri"
    [ 238.578] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 238.585] (II) Module dri: vendor="X.Org Foundation"
    [ 238.585] compiled for 1.10.3, module version = 1.0.0
    [ 238.585] ABI class: X.Org Server Extension, version 5.0
    [ 238.585] (II) Loading extension XFree86-DRI
    [ 238.585] (II) LoadModule: "dri2"
    [ 238.585] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 238.586] (II) Module dri2: vendor="X.Org Foundation"
    [ 238.586] compiled for 1.10.3, module version = 1.2.0
    [ 238.586] ABI class: X.Org Server Extension, version 5.0
    [ 238.586] (II) Loading extension DRI2
    [ 238.586] (II) LoadModule: "nvidia"
    [ 238.607] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 238.672] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 238.674] compiled for 4.0.2, module version = 1.0.0
    [ 238.674] Module class: X.Org Video Driver
    [ 238.701] (II) NVIDIA dlloader X Driver 280.11 Thu Jul 21 13:56:10 PDT 2011
    [ 238.701] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 238.701] (--) using VT number 7
    [ 238.751] (II) Loading sub module "fb"
    [ 238.751] (II) LoadModule: "fb"
    [ 238.751] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 238.762] (II) Module fb: vendor="X.Org Foundation"
    [ 238.762] compiled for 1.10.3, module version = 1.0.0
    [ 238.762] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 238.762] (II) Loading sub module "wfb"
    [ 238.762] (II) LoadModule: "wfb"
    [ 238.762] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 238.775] (II) Module wfb: vendor="X.Org Foundation"
    [ 238.775] compiled for 1.10.3, module version = 1.0.0
    [ 238.775] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 238.775] (II) Loading sub module "ramdac"
    [ 238.775] (II) LoadModule: "ramdac"
    [ 238.775] (II) Module "ramdac" already built-in
    [ 238.790] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 238.790] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 238.790] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 238.800] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 238.800] (==) NVIDIA(0): RGB weight 888
    [ 238.800] (==) NVIDIA(0): Default visual is TrueColor
    [ 238.800] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 239.489] (EE) NVIDIA(0): Failed to initialize the display subsystem for the NVIDIA
    [ 239.489] (EE) NVIDIA(0): graphics device!
    [ 239.489] (EE) NVIDIA(0): Failed to get supported display device(s)
    [ 239.489] (EE) NVIDIA(0): Failed to initialize dac HAL
    [ 239.490] (II) UnloadModule: "nvidia"
    [ 239.490] (II) Unloading nvidia
    [ 239.490] (II) UnloadModule: "wfb"
    [ 239.490] (II) Unloading wfb
    [ 239.490] (II) UnloadModule: "fb"
    [ 239.490] (II) Unloading fb
    [ 239.490] (EE) Screen(s) found, but none have a usable configuration.
    [ 239.490]
    Fatal server error:
    [ 239.490] no screens found
    [ 239.490]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 239.490] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 239.490]
    The NVIDIA page in the Arch Wiki says to comment out any occurrences of dri (and I assume dri2 as well) in xorg.conf.  As you can see, they are not in xorg.conf, but they are still being loaded.  I'm not sure where they are coming from.  I haven't messed with anything in xord.conf.d (though the 20-nvidia.conf file showed up).  I don't see any references to dri there, either.
    I've also tried nvidia-beta and nvidia-utils-beta, but the same thing happens.
    Does anyone know what the problem is?
    Last edited by ldb88 (2011-07-30 23:56:55)

    On a typical setup, Ctrl+Alt+F7--or really, Alt-F7--switches to Display 0, where X will attach if you're using startx.
    Probably, Display 0 is on screen after startx, and you're just not getting anything.  As long as your keyboard is binding correctly, you should be able to hit Ctrl+Alt+F1 to get back to the first terminal, assuming that is from where you started X.
    Otherwise, yes, make sure dbus is installed and started.
    rc.d dbus start
    Or, is it--
    rc.d start dbus
    I've been using systemd for a while now.  Can't remember.
    Also make sure dbus is in your daemons array in /etc/rc.conf.

  • Unable to build xorg-server from abs

    Trying to makepkg xorg-server 1.13.1-1, however faults out with the following:
    /usr/include/X11/fonts/fontproto.h:48:13: note: previous declaration of 'remove_fs_handlers' was here
    In file included from main.c:102:0:
    ../include/dixfont.h:182:22: warning: redundant redeclaration of 'StoreFontClientFont' [-Wredundant-decls]
    In file included from /usr/include/X11/fonts/fontstruct.h:291:0,
    from ../include/dixfont.h:30,
    from main.c:102:
    /usr/include/X11/fonts/fontproto.h:61:12: note: previous declaration of 'StoreFontClientFont' was here
    main.c: In function 'main':
    main.c:140:13: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    cc1: some warnings being treated as errors
    make[2]: *** [main.lo] Error 1
    make[2]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    My system is an AMD64 with a nvidia 9800GT using Arch x64 & nouveau driver.
    Would appreciate any help.

    Trying to makepkg xorg-server 1.13.1-1, however faults out with the following:
    /usr/include/X11/fonts/fontproto.h:48:13: note: previous declaration of 'remove_fs_handlers' was here
    In file included from main.c:102:0:
    ../include/dixfont.h:182:22: warning: redundant redeclaration of 'StoreFontClientFont' [-Wredundant-decls]
    In file included from /usr/include/X11/fonts/fontstruct.h:291:0,
    from ../include/dixfont.h:30,
    from main.c:102:
    /usr/include/X11/fonts/fontproto.h:61:12: note: previous declaration of 'StoreFontClientFont' was here
    main.c: In function 'main':
    main.c:140:13: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    main.c:171:24: error: array subscript is outside array bounds [-Werror=array-bounds]
    cc1: some warnings being treated as errors
    make[2]: *** [main.lo] Error 1
    make[2]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/media/data/abs/xorg-server/src/xorg-server-1.13.1/dix'
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    My system is an AMD64 with a nvidia 9800GT using Arch x64 & nouveau driver.
    Would appreciate any help.

  • [SOLVED] Cannot start Xorg server after latest update

    The latest version of xf86-video-ati seems to have stopped my Xorg server running. I did my usual update this morning and got the new version of this driver along with a xorg-server update. On rebooting, I get the following error in Xorg-0.log
    [    27.172] drmOpenDevice: node name is /dev/dri/card0
    [    27.172] drmOpenDevice: open result is 11, (OK)
    [    27.172] drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    [    27.172] drmOpenDevice: node name is /dev/dri/card0
    [    27.172] drmOpenDevice: open result is 11, (OK)
    [    27.172] drmOpenByBusid: drmOpenMinor returns 11
    [    27.172] drmOpenByBusid: Interface 1.4 failed, trying 1.1
    [    27.172] drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    [    27.278]
    Backtrace:
    [    27.289] 0: /usr/bin/X (xorg_backtrace+0x28) [0x49f1a8]
    [    27.289] 1: /usr/bin/X (0x400000+0x60239) [0x460239]
    [    27.289] 2: /lib/libpthread.so.0 (0x7f42d79da000+0xf1c0) [0x7f42d79e91c0]
    [    27.289] Segmentation fault at address (nil)
    [    27.289]
    Fatal server error:
    [    27.289] Caught signal 11 (Segmentation fault). Server aborting
    [    27.289]
    [    27.289]
    I have tried rolling back to the previous version of xorg-server & xf86-video-ati and my kernel (standard 64bit) but none of these help.
    The only solution I have is to remove the xf86-video-ati driver and use the vesa driver. This as least lets me run the Xorg server.
    Has anyone else encountered this problem or know of what has caused this?
    Thanks,
    Last edited by iainwillis (2010-11-26 11:02:16)

    Full Xorg.0.log:
    [ 21.718]
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    [ 21.747] X Protocol Version 11, Revision 0
    [ 21.748] Build Operating System: Linux 2.6.35-ARCH x86_64
    [ 21.748] Current Operating System: Linux iainwillis 2.6.36-ARCH #1 SMP PREEMPT Wed Nov 24 00:39:57 CET 2010 x86_64
    [ 21.748] Kernel command line: root=/dev/disk/by-uuid/cedc06dd-72ea-41dd-985f-045b6b72afa5 ro radeon.modeset=0
    [ 21.748] Build Date: 01 November 2010 10:19:41PM
    [ 21.748]
    [ 21.748] Current version of pixman: 0.20.0
    [ 21.748] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 21.748] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 21.748] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Nov 26 10:16:04 2010
    [ 21.857] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 22.266] (==) No Layout section. Using the first Screen section.
    [ 22.266] (==) No screen section available. Using defaults.
    [ 22.266] (**) |-->Screen "Default Screen Section" (0)
    [ 22.266] (**) | |-->Monitor "<default monitor>"
    [ 22.266] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 22.266] (==) Automatically adding devices
    [ 22.266] (==) Automatically enabling devices
    [ 22.323] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 22.323] Entry deleted from font path.
    [ 22.378] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 22.378] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 22.378] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 22.378] (II) Loader magic: 0x7d3360
    [ 22.378] (II) Module ABI versions:
    [ 22.378] X.Org ANSI C Emulation: 0.4
    [ 22.378] X.Org Video Driver: 8.0
    [ 22.378] X.Org XInput driver : 11.0
    [ 22.378] X.Org Server Extension : 4.0
    [ 22.379] (--) PCI:*(0:1:5:0) 1002:5975:103c:30b0 rev 0, Mem @ 0xc0000000/134217728, 0xd4300000/65536, I/O @ 0x00006000/256, BIOS @ 0x????????/131072
    [ 22.380] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 22.380] (II) LoadModule: "extmod"
    [ 22.438] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 22.443] (II) Module extmod: vendor="X.Org Foundation"
    [ 22.444] compiled for 1.9.2, module version = 1.0.0
    [ 22.444] Module class: X.Org Server Extension
    [ 22.444] ABI class: X.Org Server Extension, version 4.0
    [ 22.444] (II) Loading extension MIT-SCREEN-SAVER
    [ 22.444] (II) Loading extension XFree86-VidModeExtension
    [ 22.444] (II) Loading extension XFree86-DGA
    [ 22.444] (II) Loading extension DPMS
    [ 22.444] (II) Loading extension XVideo
    [ 22.444] (II) Loading extension XVideo-MotionCompensation
    [ 22.444] (II) Loading extension X-Resource
    [ 22.444] (II) LoadModule: "dbe"
    [ 22.444] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 22.447] (II) Module dbe: vendor="X.Org Foundation"
    [ 22.447] compiled for 1.9.2, module version = 1.0.0
    [ 22.447] Module class: X.Org Server Extension
    [ 22.447] ABI class: X.Org Server Extension, version 4.0
    [ 22.447] (II) Loading extension DOUBLE-BUFFER
    [ 22.447] (II) LoadModule: "glx"
    [ 22.448] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 22.460] (II) Module glx: vendor="X.Org Foundation"
    [ 22.460] compiled for 1.9.2, module version = 1.0.0
    [ 22.460] ABI class: X.Org Server Extension, version 4.0
    [ 22.460] (==) AIGLX enabled
    [ 22.460] (II) Loading extension GLX
    [ 22.461] (II) LoadModule: "record"
    [ 22.462] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 22.462] (II) Module record: vendor="X.Org Foundation"
    [ 22.462] compiled for 1.9.2, module version = 1.13.0
    [ 22.462] Module class: X.Org Server Extension
    [ 22.462] ABI class: X.Org Server Extension, version 4.0
    [ 22.462] (II) Loading extension RECORD
    [ 22.462] (II) LoadModule: "dri"
    [ 22.463] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 22.574] (II) Module dri: vendor="X.Org Foundation"
    [ 22.574] compiled for 1.9.2, module version = 1.0.0
    [ 22.574] ABI class: X.Org Server Extension, version 4.0
    [ 22.574] (II) Loading extension XFree86-DRI
    [ 22.574] (II) LoadModule: "dri2"
    [ 22.574] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 22.575] (II) Module dri2: vendor="X.Org Foundation"
    [ 22.575] compiled for 1.9.2, module version = 1.2.0
    [ 22.575] ABI class: X.Org Server Extension, version 4.0
    [ 22.575] (II) Loading extension DRI2
    [ 22.575] (==) Matched ati as autoconfigured driver 0
    [ 22.575] (==) Matched vesa as autoconfigured driver 1
    [ 22.575] (==) Matched fbdev as autoconfigured driver 2
    [ 22.575] (==) Assigned the driver to the xf86ConfigLayout
    [ 22.575] (II) LoadModule: "ati"
    [ 22.575] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 22.592] (II) Module ati: vendor="X.Org Foundation"
    [ 22.592] compiled for 1.9.0, module version = 6.13.2
    [ 22.592] Module class: X.Org Video Driver
    [ 22.592] ABI class: X.Org Video Driver, version 8.0
    [ 22.592] (II) LoadModule: "radeon"
    [ 22.592] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 22.730] (II) Module radeon: vendor="X.Org Foundation"
    [ 22.741] compiled for 1.9.0, module version = 6.13.2
    [ 22.741] Module class: X.Org Video Driver
    [ 22.741] ABI class: X.Org Video Driver, version 8.0
    [ 22.742] (II) LoadModule: "vesa"
    [ 22.742] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 22.743] (II) Module vesa: vendor="X.Org Foundation"
    [ 22.743] compiled for 1.9.0, module version = 2.3.0
    [ 22.743] Module class: X.Org Video Driver
    [ 22.743] ABI class: X.Org Video Driver, version 8.0
    [ 22.743] (II) LoadModule: "fbdev"
    [ 22.799] (WW) Warning, couldn't open module fbdev
    [ 22.799] (II) UnloadModule: "fbdev"
    [ 22.799] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 22.799] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4290, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR
    [ 22.804] (II) VESA: driver for VESA chipsets: vesa
    [ 22.804] (++) using VT number 7
    [ 22.805] (II) [KMS] drm report modesetting isn't supported.
    [ 22.805] (WW) Falling back to old probe method for vesa
    [ 22.805] (II) RADEON(0): TOTO SAYS 00000000d4300000
    [ 22.805] (II) RADEON(0): MMIO registers at 0x00000000d4300000: size 64KB
    [ 22.805] (II) RADEON(0): PCI bus 1 card 5 func 0
    [ 22.806] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 22.806] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 22.806] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 22.816] (==) RADEON(0): Default visual is TrueColor
    [ 22.816] (II) Loading sub module "vgahw"
    [ 22.816] (II) LoadModule: "vgahw"
    [ 22.823] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 22.947] (II) Module vgahw: vendor="X.Org Foundation"
    [ 22.947] compiled for 1.9.2, module version = 0.1.0
    [ 22.947] ABI class: X.Org Video Driver, version 8.0
    [ 22.947] (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    [ 22.947] (==) RADEON(0): RGB weight 888
    [ 22.947] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 22.947] (--) RADEON(0): Chipset: "ATI Radeon XPRESS 200M 5975 (PCIE)" (ChipID = 0x5975)
    [ 22.947] (--) RADEON(0): Linear framebuffer at 0x00000000c0000000
    [ 22.947] (II) RADEON(0): PCI card detected
    [ 22.947] (II) Loading sub module "int10"
    [ 22.947] (II) LoadModule: "int10"
    [ 22.948] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 23.057] (II) Module int10: vendor="X.Org Foundation"
    [ 23.057] compiled for 1.9.2, module version = 1.0.0
    [ 23.057] ABI class: X.Org Video Driver, version 8.0
    [ 23.057] (II) RADEON(0): initializing int10
    [ 23.058] (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    [ 23.058] (II) RADEON(0): Legacy BIOS detected
    [ 23.095] drmOpenDevice: node name is /dev/dri/card0
    [ 23.095] drmOpenDevice: open result is 10, (OK)
    [ 23.095] drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    [ 23.096] drmOpenDevice: node name is /dev/dri/card0
    [ 23.096] drmOpenDevice: open result is 10, (OK)
    [ 23.096] drmOpenByBusid: drmOpenMinor returns 10
    [ 23.096] drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    [ 23.096] (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.33.0
    [ 23.096] (II) RADEON(0): Direct rendering experimental on RS400/Xpress 200 enabled
    [ 23.096] (==) RADEON(0): Page Flipping disabled
    [ 23.096] (II) RADEON(0): Will try to use DMA for Xv image transfers
    [ 23.096] (II) RADEON(0): Detected total video RAM=131072K, accessible=131072K (PCI BAR=131072K)
    [ 23.096] (--) RADEON(0): Mapped VideoRAM: 131072 kByte (128 bit DDR SDRAM)
    [ 23.096] (II) RADEON(0): Color tiling enabled by default
    [ 23.096] (II) Loading sub module "ddc"
    [ 23.097] (II) LoadModule: "ddc"
    [ 23.097] (II) Module "ddc" already built-in
    [ 23.097] (II) Loading sub module "i2c"
    [ 23.097] (II) LoadModule: "i2c"
    [ 23.097] (II) Module "i2c" already built-in
    [ 23.116] (II) RADEON(0): ref_freq: 1432, min_out_pll: 20000, max_out_pll: 40000, min_in_pll: 100, max_in_pll: 1350, xclk: 13300, sclk: 399.000000, mclk: 133.000000
    [ 23.116] (II) RADEON(0): PLL parameters: rf=1432 rd=6 min=20000 max=40000; xclk=13300
    [ 23.116] (II) RADEON(0): Panel ID string: LGP
    [ 23.116] (II) RADEON(0): Panel Size from BIOS: 1400x1050
    [ 23.116] (II) RADEON(0): BIOS provided dividers will be used.
    [ 23.116] (WW) RADEON(0): LVDS Info:
    XRes: 1400, YRes: 1050, DotClock: 108000
    HBlank: 288, HOverPlus: 32808, HSyncWidth: 112
    VBlank: 13, VOverPlus: 2, VSyncWidth: 3
    [ 23.116] (WW) RADEON(0): LCD DDC Info Table found!
    [ 23.116] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 23.116] (II) RADEON(0): I2C bus "VGA-0" initialized.
    [ 23.116] (II) RADEON(0): Output LVDS has no monitor section
    [ 23.116] (II) RADEON(0): I2C bus "LVDS" initialized.
    [ 23.116] (II) RADEON(0): Output S-video has no monitor section
    [ 23.116] (II) RADEON(0): Default TV standard: NTSC
    [ 23.116] (II) RADEON(0): TV standards supported by chip: NTSC PAL PAL-M NTSC-J
    [ 23.116] (II) RADEON(0): Port0:
    [ 23.116] XRANDR name: VGA-0
    [ 23.116] Connector: VGA
    [ 23.116] CRT1: INTERNAL_DAC2
    [ 23.116] DDC reg: 0x68
    [ 23.116] (II) RADEON(0): Port1:
    [ 23.116] XRANDR name: LVDS
    [ 23.116] Connector: LVDS
    [ 23.116] LCD1: INTERNAL_LVDS
    [ 23.116] DDC reg: 0x1a0
    [ 23.116] (II) RADEON(0): Port2:
    [ 23.116] XRANDR name: S-video
    [ 23.116] Connector: S-video
    [ 23.116] TV1: INTERNAL_DAC2
    [ 23.116] DDC reg: 0x0
    [ 23.116] (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    [ 23.118] (II) RADEON(0): I2C device "VGA-0:DDC control interface" registered at address 0x6E.
    [ 23.180] (II) RADEON(0): EDID for output VGA-0
    [ 23.180] (II) RADEON(0): Manufacturer: SAM Model: 285 Serial#: 1212231993
    [ 23.180] (II) RADEON(0): Year: 2007 Week: 14
    [ 23.180] (II) RADEON(0): EDID Version: 1.3
    [ 23.180] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 23.180] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 23.180] (II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 26
    [ 23.180] (II) RADEON(0): Gamma: 2.35
    [ 23.180] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 23.180] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.180] (II) RADEON(0): redX: 0.636 redY: 0.349 greenX: 0.290 greenY: 0.589
    [ 23.180] (II) RADEON(0): blueX: 0.143 blueY: 0.080 whiteX: 0.313 whiteY: 0.329
    [ 23.180] (II) RADEON(0): Supported established timings:
    [ 23.180] (II) RADEON(0): 720x400@70Hz
    [ 23.180] (II) RADEON(0): 640x480@60Hz
    [ 23.180] (II) RADEON(0): 640x480@67Hz
    [ 23.180] (II) RADEON(0): 640x480@72Hz
    [ 23.180] (II) RADEON(0): 640x480@75Hz
    [ 23.180] (II) RADEON(0): 800x600@56Hz
    [ 23.180] (II) RADEON(0): 800x600@60Hz
    [ 23.180] (II) RADEON(0): 800x600@72Hz
    [ 23.180] (II) RADEON(0): 800x600@75Hz
    [ 23.180] (II) RADEON(0): 832x624@75Hz
    [ 23.180] (II) RADEON(0): 1024x768@60Hz
    [ 23.180] (II) RADEON(0): 1024x768@70Hz
    [ 23.180] (II) RADEON(0): 1024x768@75Hz
    [ 23.180] (II) RADEON(0): 1280x1024@75Hz
    [ 23.180] (II) RADEON(0): 1152x864@75Hz
    [ 23.180] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.180] (II) RADEON(0): Supported standard timings:
    [ 23.180] (II) RADEON(0): #0: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 23.180] (II) RADEON(0): #1: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 23.180] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 23.180] (II) RADEON(0): #3: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 23.180] (II) RADEON(0): #4: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 23.180] (II) RADEON(0): Supported detailed timing:
    [ 23.180] (II) RADEON(0): clock: 106.5 MHz Image Size: 410 x 257 mm
    [ 23.181] (II) RADEON(0): h_active: 1440 h_sync: 1520 h_sync_end 1672 h_blank_end 1904 h_border: 0
    [ 23.181] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 934 v_border: 0
    [ 23.181] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 23.181] (II) RADEON(0): Monitor name: SyncMaster
    [ 23.181] (II) RADEON(0): Serial No: HMCP404774
    [ 23.181] (II) RADEON(0): EDID (in hex):
    [ 23.181] (II) RADEON(0): 00ffffffffffff004c2d850239314148
    [ 23.181] (II) RADEON(0): 0e1101030e291a872ad7a5a2594a9624
    [ 23.181] (II) RADEON(0): 145054bfef809500950f81808140714f
    [ 23.181] (II) RADEON(0): 0101010101019a29a0d0518422305098
    [ 23.181] (II) RADEON(0): 36009a011100001c000000fd00384b1e
    [ 23.181] (II) RADEON(0): 510e000a202020202020000000fc0053
    [ 23.181] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 23.181] (II) RADEON(0): 00484d43503430343737340a202000cb
    [ 23.181] (II) RADEON(0): EDID vendor "SAM", prod id 645
    [ 23.186] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 23.186] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 23.186] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 23.186] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 23.186] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 23.186] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 23.187] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 23.187] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 23.187] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 23.187] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 23.187] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 23.187] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 23.187] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 23.187] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 23.187] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 23.187] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    [ 23.187] (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    [ 23.187] (II) RADEON(0): Manufacturer: SAM Model: 285 Serial#: 1212231993
    [ 23.187] (II) RADEON(0): Year: 2007 Week: 14
    [ 23.187] (II) RADEON(0): EDID Version: 1.3
    [ 23.187] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 23.187] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 23.187] (II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 26
    [ 23.187] (II) RADEON(0): Gamma: 2.35
    [ 23.187] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 23.187] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.187] (II) RADEON(0): redX: 0.636 redY: 0.349 greenX: 0.290 greenY: 0.589
    [ 23.187] (II) RADEON(0): blueX: 0.143 blueY: 0.080 whiteX: 0.313 whiteY: 0.329
    [ 23.187] (II) RADEON(0): Supported established timings:
    [ 23.187] (II) RADEON(0): 720x400@70Hz
    [ 23.187] (II) RADEON(0): 640x480@60Hz
    [ 23.187] (II) RADEON(0): 640x480@67Hz
    [ 23.187] (II) RADEON(0): 640x480@72Hz
    [ 23.187] (II) RADEON(0): 640x480@75Hz
    [ 23.187] (II) RADEON(0): 800x600@56Hz
    [ 23.187] (II) RADEON(0): 800x600@60Hz
    [ 23.187] (II) RADEON(0): 800x600@72Hz
    [ 23.187] (II) RADEON(0): 800x600@75Hz
    [ 23.187] (II) RADEON(0): 832x624@75Hz
    [ 23.187] (II) RADEON(0): 1024x768@60Hz
    [ 23.187] (II) RADEON(0): 1024x768@70Hz
    [ 23.187] (II) RADEON(0): 1024x768@75Hz
    [ 23.187] (II) RADEON(0): 1280x1024@75Hz
    [ 23.187] (II) RADEON(0): 1152x864@75Hz
    [ 23.187] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.187] (II) RADEON(0): Supported standard timings:
    [ 23.187] (II) RADEON(0): #0: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 23.187] (II) RADEON(0): #1: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 23.187] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 23.187] (II) RADEON(0): #3: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 23.187] (II) RADEON(0): #4: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 23.187] (II) RADEON(0): Supported detailed timing:
    [ 23.187] (II) RADEON(0): clock: 106.5 MHz Image Size: 410 x 257 mm
    [ 23.188] (II) RADEON(0): h_active: 1440 h_sync: 1520 h_sync_end 1672 h_blank_end 1904 h_border: 0
    [ 23.188] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 934 v_border: 0
    [ 23.188] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 23.188] (II) RADEON(0): Monitor name: SyncMaster
    [ 23.188] (II) RADEON(0): Serial No: HMCP404774
    [ 23.188] (II) RADEON(0): EDID (in hex):
    [ 23.188] (II) RADEON(0): 00ffffffffffff004c2d850239314148
    [ 23.188] (II) RADEON(0): 0e1101030e291a872ad7a5a2594a9624
    [ 23.188] (II) RADEON(0): 145054bfef809500950f81808140714f
    [ 23.188] (II) RADEON(0): 0101010101019a29a0d0518422305098
    [ 23.188] (II) RADEON(0): 36009a011100001c000000fd00384b1e
    [ 23.188] (II) RADEON(0): 510e000a202020202020000000fc0053
    [ 23.188] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 23.188] (II) RADEON(0): 00484d43503430343737340a202000cb
    [ 23.188] finished output detect: 0
    [ 23.188] (II) RADEON(0): I2C device "LVDS:ddc2" registered at address 0xA0.
    [ 23.250] (II) RADEON(0): EDID for output LVDS
    [ 23.250] (II) RADEON(0): Manufacturer: LGP Model: 1153 Serial#: 0
    [ 23.250] (II) RADEON(0): Year: 1990 Week: 0
    [ 23.250] (II) RADEON(0): EDID Version: 1.2
    [ 23.250] (II) RADEON(0): Digital Display Input
    [ 23.250] (II) RADEON(0): Max Image Size [cm]: horiz.: 30 vert.: 23
    [ 23.250] (II) RADEON(0): Gamma: 2.20
    [ 23.250] (II) RADEON(0): No DPMS capabilities specified
    [ 23.250] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 23.250] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.250] (II) RADEON(0): redX: 0.590 redY: 0.343 greenX: 0.319 greenY: 0.539
    [ 23.250] (II) RADEON(0): blueX: 0.154 blueY: 0.133 whiteX: 0.312 whiteY: 0.328
    [ 23.250] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.250] (II) RADEON(0): Supported detailed timing:
    [ 23.250] (II) RADEON(0): clock: 108.0 MHz Image Size: 305 x 228 mm
    [ 23.250] (II) RADEON(0): h_active: 1400 h_sync: 1432 h_sync_end 1544 h_blank_end 1688 h_border: 0
    [ 23.250] (II) RADEON(0): v_active: 1050 v_sync: 1052 v_sync_end 1056 v_blanking: 1066 v_border: 0
    [ 23.250] (II) RADEON(0): LGPhilipsLCD
    [ 23.250] (II) RADEON(0): LP150E06-A3K2
    [ 23.250] (II) RADEON(0): EDID (in hex):
    [ 23.250] (II) RADEON(0): 00ffffffffffff0030f0531100000000
    [ 23.250] (II) RADEON(0): 00000102801e17780a3c809757518a27
    [ 23.250] (II) RADEON(0): 22505400000001010101010101010101
    [ 23.250] (II) RADEON(0): 010101010101302a7820511a10402070
    [ 23.250] (II) RADEON(0): 240031e4100000180000000000000000
    [ 23.250] (II) RADEON(0): 00000000000000000000000000fe004c
    [ 23.250] (II) RADEON(0): 475068696c6970734c43440a000000fe
    [ 23.250] (II) RADEON(0): 004c503135304530362d41334b3200e8
    [ 23.250] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 23.250] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 23.250] (II) RADEON(0): Manufacturer: LGP Model: 1153 Serial#: 0
    [ 23.250] (II) RADEON(0): Year: 1990 Week: 0
    [ 23.250] (II) RADEON(0): EDID Version: 1.2
    [ 23.250] (II) RADEON(0): Digital Display Input
    [ 23.250] (II) RADEON(0): Max Image Size [cm]: horiz.: 30 vert.: 23
    [ 23.250] (II) RADEON(0): Gamma: 2.20
    [ 23.250] (II) RADEON(0): No DPMS capabilities specified
    [ 23.250] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 23.250] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.251] (II) RADEON(0): redX: 0.590 redY: 0.343 greenX: 0.319 greenY: 0.539
    [ 23.251] (II) RADEON(0): blueX: 0.154 blueY: 0.133 whiteX: 0.312 whiteY: 0.328
    [ 23.251] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.251] (II) RADEON(0): Supported detailed timing:
    [ 23.251] (II) RADEON(0): clock: 108.0 MHz Image Size: 305 x 228 mm
    [ 23.251] (II) RADEON(0): h_active: 1400 h_sync: 1432 h_sync_end 1544 h_blank_end 1688 h_border: 0
    [ 23.251] (II) RADEON(0): v_active: 1050 v_sync: 1052 v_sync_end 1056 v_blanking: 1066 v_border: 0
    [ 23.251] (II) RADEON(0): LGPhilipsLCD
    [ 23.251] (II) RADEON(0): LP150E06-A3K2
    [ 23.251] (II) RADEON(0): EDID (in hex):
    [ 23.251] (II) RADEON(0): 00ffffffffffff0030f0531100000000
    [ 23.251] (II) RADEON(0): 00000102801e17780a3c809757518a27
    [ 23.251] (II) RADEON(0): 22505400000001010101010101010101
    [ 23.251] (II) RADEON(0): 010101010101302a7820511a10402070
    [ 23.251] (II) RADEON(0): 240031e4100000180000000000000000
    [ 23.251] (II) RADEON(0): 00000000000000000000000000fe004c
    [ 23.251] (II) RADEON(0): 475068696c6970734c43440a000000fe
    [ 23.251] (II) RADEON(0): 004c503135304530362d41334b3200e8
    [ 23.251] finished output detect: 1
    [ 23.251] (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    [ 23.251] finished output detect: 2
    [ 23.251] finished all detect
    [ 23.312] (II) RADEON(0): EDID for output VGA-0
    [ 23.312] (II) RADEON(0): Manufacturer: SAM Model: 285 Serial#: 1212231993
    [ 23.313] (II) RADEON(0): Year: 2007 Week: 14
    [ 23.313] (II) RADEON(0): EDID Version: 1.3
    [ 23.313] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 23.313] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 23.313] (II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 26
    [ 23.313] (II) RADEON(0): Gamma: 2.35
    [ 23.313] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 23.313] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.313] (II) RADEON(0): redX: 0.636 redY: 0.349 greenX: 0.290 greenY: 0.589
    [ 23.313] (II) RADEON(0): blueX: 0.143 blueY: 0.080 whiteX: 0.313 whiteY: 0.329
    [ 23.313] (II) RADEON(0): Supported established timings:
    [ 23.313] (II) RADEON(0): 720x400@70Hz
    [ 23.313] (II) RADEON(0): 640x480@60Hz
    [ 23.313] (II) RADEON(0): 640x480@67Hz
    [ 23.313] (II) RADEON(0): 640x480@72Hz
    [ 23.313] (II) RADEON(0): 640x480@75Hz
    [ 23.313] (II) RADEON(0): 800x600@56Hz
    [ 23.313] (II) RADEON(0): 800x600@60Hz
    [ 23.313] (II) RADEON(0): 800x600@72Hz
    [ 23.313] (II) RADEON(0): 800x600@75Hz
    [ 23.313] (II) RADEON(0): 832x624@75Hz
    [ 23.313] (II) RADEON(0): 1024x768@60Hz
    [ 23.313] (II) RADEON(0): 1024x768@70Hz
    [ 23.313] (II) RADEON(0): 1024x768@75Hz
    [ 23.313] (II) RADEON(0): 1280x1024@75Hz
    [ 23.313] (II) RADEON(0): 1152x864@75Hz
    [ 23.313] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.313] (II) RADEON(0): Supported standard timings:
    [ 23.313] (II) RADEON(0): #0: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 23.313] (II) RADEON(0): #1: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 23.313] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 23.313] (II) RADEON(0): #3: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 23.313] (II) RADEON(0): #4: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 23.313] (II) RADEON(0): Supported detailed timing:
    [ 23.313] (II) RADEON(0): clock: 106.5 MHz Image Size: 410 x 257 mm
    [ 23.313] (II) RADEON(0): h_active: 1440 h_sync: 1520 h_sync_end 1672 h_blank_end 1904 h_border: 0
    [ 23.313] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 934 v_border: 0
    [ 23.313] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 23.313] (II) RADEON(0): Monitor name: SyncMaster
    [ 23.313] (II) RADEON(0): Serial No: HMCP404774
    [ 23.313] (II) RADEON(0): EDID (in hex):
    [ 23.313] (II) RADEON(0): 00ffffffffffff004c2d850239314148
    [ 23.313] (II) RADEON(0): 0e1101030e291a872ad7a5a2594a9624
    [ 23.313] (II) RADEON(0): 145054bfef809500950f81808140714f
    [ 23.313] (II) RADEON(0): 0101010101019a29a0d0518422305098
    [ 23.313] (II) RADEON(0): 36009a011100001c000000fd00384b1e
    [ 23.313] (II) RADEON(0): 510e000a202020202020000000fc0053
    [ 23.313] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 23.313] (II) RADEON(0): 00484d43503430343737340a202000cb
    [ 23.313] (II) RADEON(0): EDID vendor "SAM", prod id 645
    [ 23.313] (II) RADEON(0): Using hsync ranges from config file
    [ 23.313] (II) RADEON(0): Using vrefresh ranges from config file
    [ 23.313] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 23.314] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 23.314] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 23.314] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 23.314] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 23.314] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 23.314] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 23.314] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 23.314] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 23.314] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 23.314] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 23.314] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 23.314] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 23.314] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    [ 23.314] (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    [ 23.314] (II) RADEON(0): Manufacturer: SAM Model: 285 Serial#: 1212231993
    [ 23.314] (II) RADEON(0): Year: 2007 Week: 14
    [ 23.314] (II) RADEON(0): EDID Version: 1.3
    [ 23.314] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 23.314] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 23.314] (II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 26
    [ 23.314] (II) RADEON(0): Gamma: 2.35
    [ 23.314] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 23.314] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.314] (II) RADEON(0): redX: 0.636 redY: 0.349 greenX: 0.290 greenY: 0.589
    [ 23.314] (II) RADEON(0): blueX: 0.143 blueY: 0.080 whiteX: 0.313 whiteY: 0.329
    [ 23.314] (II) RADEON(0): Supported established timings:
    [ 23.314] (II) RADEON(0): 720x400@70Hz
    [ 23.314] (II) RADEON(0): 640x480@60Hz
    [ 23.314] (II) RADEON(0): 640x480@67Hz
    [ 23.314] (II) RADEON(0): 640x480@72Hz
    [ 23.314] (II) RADEON(0): 640x480@75Hz
    [ 23.314] (II) RADEON(0): 800x600@56Hz
    [ 23.314] (II) RADEON(0): 800x600@60Hz
    [ 23.314] (II) RADEON(0): 800x600@72Hz
    [ 23.314] (II) RADEON(0): 800x600@75Hz
    [ 23.314] (II) RADEON(0): 832x624@75Hz
    [ 23.314] (II) RADEON(0): 1024x768@60Hz
    [ 23.314] (II) RADEON(0): 1024x768@70Hz
    [ 23.314] (II) RADEON(0): 1024x768@75Hz
    [ 23.314] (II) RADEON(0): 1280x1024@75Hz
    [ 23.314] (II) RADEON(0): 1152x864@75Hz
    [ 23.314] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.314] (II) RADEON(0): Supported standard timings:
    [ 23.314] (II) RADEON(0): #0: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 23.314] (II) RADEON(0): #1: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 23.314] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 23.314] (II) RADEON(0): #3: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 23.314] (II) RADEON(0): #4: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 23.315] (II) RADEON(0): Supported detailed timing:
    [ 23.315] (II) RADEON(0): clock: 106.5 MHz Image Size: 410 x 257 mm
    [ 23.315] (II) RADEON(0): h_active: 1440 h_sync: 1520 h_sync_end 1672 h_blank_end 1904 h_border: 0
    [ 23.315] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 934 v_border: 0
    [ 23.315] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 23.315] (II) RADEON(0): Monitor name: SyncMaster
    [ 23.315] (II) RADEON(0): Serial No: HMCP404774
    [ 23.315] (II) RADEON(0): EDID (in hex):
    [ 23.315] (II) RADEON(0): 00ffffffffffff004c2d850239314148
    [ 23.315] (II) RADEON(0): 0e1101030e291a872ad7a5a2594a9624
    [ 23.315] (II) RADEON(0): 145054bfef809500950f81808140714f
    [ 23.315] (II) RADEON(0): 0101010101019a29a0d0518422305098
    [ 23.315] (II) RADEON(0): 36009a011100001c000000fd00384b1e
    [ 23.315] (II) RADEON(0): 510e000a202020202020000000fc0053
    [ 23.315] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 23.315] (II) RADEON(0): 00484d43503430343737340a202000cb
    [ 23.315] (II) RADEON(0): EDID vendor "SAM", prod id 645
    [ 23.315] (II) RADEON(0): Printing probed modes for output VGA-0
    [ 23.315] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 23.315] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 23.315] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 23.315] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 23.315] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 23.315] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 23.315] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 23.315] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 23.315] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    [ 23.315] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 23.315] (II) RADEON(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 23.315] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 23.405] (II) RADEON(0): EDID for output LVDS
    [ 23.405] (II) RADEON(0): Manufacturer: LGP Model: 1153 Serial#: 0
    [ 23.405] (II) RADEON(0): Year: 1990 Week: 0
    [ 23.405] (II) RADEON(0): EDID Version: 1.2
    [ 23.405] (II) RADEON(0): Digital Display Input
    [ 23.405] (II) RADEON(0): Max Image Size [cm]: horiz.: 30 vert.: 23
    [ 23.405] (II) RADEON(0): Gamma: 2.20
    [ 23.405] (II) RADEON(0): No DPMS capabilities specified
    [ 23.405] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 23.405] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.405] (II) RADEON(0): redX: 0.590 redY: 0.343 greenX: 0.319 greenY: 0.539
    [ 23.405] (II) RADEON(0): blueX: 0.154 blueY: 0.133 whiteX: 0.312 whiteY: 0.328
    [ 23.405] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.405] (II) RADEON(0): Supported detailed timing:
    [ 23.405] (II) RADEON(0): clock: 108.0 MHz Image Size: 305 x 228 mm
    [ 23.405] (II) RADEON(0): h_active: 1400 h_sync: 1432 h_sync_end 1544 h_blank_end 1688 h_border: 0
    [ 23.405] (II) RADEON(0): v_active: 1050 v_sync: 1052 v_sync_end 1056 v_blanking: 1066 v_border: 0
    [ 23.405] (II) RADEON(0): LGPhilipsLCD
    [ 23.405] (II) RADEON(0): LP150E06-A3K2
    [ 23.405] (II) RADEON(0): EDID (in hex):
    [ 23.405] (II) RADEON(0): 00ffffffffffff0030f0531100000000
    [ 23.405] (II) RADEON(0): 00000102801e17780a3c809757518a27
    [ 23.405] (II) RADEON(0): 22505400000001010101010101010101
    [ 23.405] (II) RADEON(0): 010101010101302a7820511a10402070
    [ 23.405] (II) RADEON(0): 240031e4100000180000000000000000
    [ 23.405] (II) RADEON(0): 00000000000000000000000000fe004c
    [ 23.405] (II) RADEON(0): 475068696c6970734c43440a000000fe
    [ 23.405] (II) RADEON(0): 004c503135304530362d41334b3200e8
    [ 23.405] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 23.405] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 23.405] (II) RADEON(0): Manufacturer: LGP Model: 1153 Serial#: 0
    [ 23.405] (II) RADEON(0): Year: 1990 Week: 0
    [ 23.405] (II) RADEON(0): EDID Version: 1.2
    [ 23.405] (II) RADEON(0): Digital Display Input
    [ 23.405] (II) RADEON(0): Max Image Size [cm]: horiz.: 30 vert.: 23
    [ 23.405] (II) RADEON(0): Gamma: 2.20
    [ 23.405] (II) RADEON(0): No DPMS capabilities specified
    [ 23.405] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 23.405] (II) RADEON(0): First detailed timing is preferred mode
    [ 23.405] (II) RADEON(0): redX: 0.590 redY: 0.343 greenX: 0.319 greenY: 0.539
    [ 23.405] (II) RADEON(0): blueX: 0.154 blueY: 0.133 whiteX: 0.312 whiteY: 0.328
    [ 23.405] (II) RADEON(0): Manufacturer's mask: 0
    [ 23.405] (II) RADEON(0): Supported detailed timing:
    [ 23.405] (II) RADEON(0): clock: 108.0 MHz Image Size: 305 x 228 mm
    [ 23.405] (II) RADEON(0): h_active: 1400 h_sync: 1432 h_sync_end 1544 h_blank_end 1688 h_border: 0
    [ 23.405] (II) RADEON(0): v_active: 1050 v_sync: 1052 v_sync_end 1056 v_blanking: 1066 v_border: 0
    [ 23.405] (II) RADEON(0): LGPhilipsLCD
    [ 23.405] (II) RADEON(0): LP150E06-A3K2
    [ 23.405] (II) RADEON(0): EDID (in hex):
    [ 23.405] (II) RADEON(0): 00ffffffffffff0030f0531100000000
    [ 23.406] (II) RADEON(0): 00000102801e17780a3c809757518a27
    [ 23.406] (II) RADEON(0): 22505400000001010101010101010101
    [ 23.406] (II) RADEON(0): 010101010101302a7820511a10402070
    [ 23.406] (II) RADEON(0): 240031e4100000180000000000000000
    [ 23.406] (II) RADEON(0): 00000000000000000000000000fe004c
    [ 23.406] (II) RADEON(0): 475068696c6970734c43440a000000fe
    [ 23.406] (II) RADEON(0): 004c503135304530362d41334b3200e8
    [ 23.406] (II) RADEON(0): EDID vendor "LGP", prod id 4435
    [ 23.406] (II) RADEON(0): Printing probed modes for output LVDS
    [ 23.406] (II) RADEON(0): Modeline "1400x1050"x60.0 108.00 1400 1432 1544 1688 1050 1052 1056 1066 -hsync -vsync (64.0 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1280x1024"x59.9 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1280x960"x59.9 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync (59.7 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 23.406] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 23.406] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 23.406] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 23.406] (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    [ 23.406] (II) RADEON(0): EDID for output S-video
    [ 23.406] (II) RADEON(0): Output VGA-0 connected
    [ 23.406] (II) RADEON(0): Output LVDS connected
    [ 23.406] (II) RADEON(0): Output S-video disconnected
    [ 23.406] (II) RADEON(0): Using fuzzy aspect match for initial modes
    [ 23.406] (II) RADEON(0): Output VGA-0 using initial mode 1280x960
    [ 23.406] (II) RADEON(0): Output LVDS using initial mode 1280x960
    [ 23.406] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 23.406] (**) RADEON(0): Display dimensions: (410, 260) mm
    [ 23.406] (**) RADEON(0): DPI set to (89, 140)
    [ 23.406] (II) Loading sub module "fb"
    [ 23.406] (II) LoadModule: "fb"
    [ 23.406] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 23.446] (II) Module fb: vendor="X.Org Foundation"
    [ 23.446] compiled for 1.9.2, module version = 1.0.0
    [ 23.446] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 23.446] (II) Loading sub module "ramdac"
    [ 23.446] (II) LoadModule: "ramdac"
    [ 23.446] (II) Module "ramdac" already built-in
    [ 23.447] (==) RADEON(0): Using EXA acceleration architecture
    [ 23.447] (II) Loading sub module "exa"
    [ 23.447] (II) LoadModule: "exa"
    [ 23.447] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 23.453] (II) Module exa: vendor="X.Org Foundation"
    [ 23.453] compiled for 1.9.2, module version = 2.5.0
    [ 23.453] ABI class: X.Org Video Driver, version 8.0
    [ 23.453] (==) RADEON(0): Assuming overlay scaler buffer width is 1536
    [ 23.453] (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    [ 23.453] (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    [ 23.453] (II) UnloadModule: "vesa"
    [ 23.453] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 23.453] (--) Depth 24 pixmap format is 32 bpp
    [ 23.453] (II) RADEON(0): RADEONScreenInit c0000000 0 0
    [ 23.509] Entering TV Save
    [ 23.509] Save TV timing tables
    [ 23.509] saveTimingTables: reading timing tables
    [ 23.509] TV Save done
    [ 24.009] disable TVDAC
    [ 24.026] (II) RADEON(0): Dynamic Power Management Disabled
    [ 24.026] (==) RADEON(0): Using 24 bit depth buffer
    [ 24.026] (II) RADEON(0): RADEONInitMemoryMap() :
    [ 24.026] (II) RADEON(0): mem_size : 0x08000000
    [ 24.026] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800
    [ 24.026] (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    [ 24.026] (II) RADEON(0): Depth moves disabled by default
    [ 24.031] (II) RADEON(0): Allocating from a screen of 131072 kb
    [ 24.031] (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00816000
    [ 24.031] (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x0081a000
    [ 24.031] (II) RADEON(0): Will use 8280 kb for front buffer at offset 0x00000000
    [ 24.031] (II) RADEON(0): Will use 8280 kb for back buffer at offset 0x0081e000
    [ 24.031] (II) RADEON(0): Will use 8280 kb for depth buffer at offset 0x01034000
    [ 24.031] (II) RADEON(0): Will use 52736 kb for textures at offset 0x0184a000
    [ 24.031] (II) RADEON(0): Will use 53464 kb for X Server offscreen at offset 0x04bca000
    [ 24.031] drmOpenDevice: node name is /dev/dri/card0
    [ 24.031] drmOpenDevice: open result is 10, (OK)
    [ 24.032] drmOpenDevice: node name is /dev/dri/card0
    [ 24.032] drmOpenDevice: open result is 10, (OK)
    [ 24.032] drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    [ 24.032] drmOpenDevice: node name is /dev/dri/card0
    [ 24.033] drmOpenDevice: open result is 10, (OK)
    [ 24.033] drmOpenByBusid: drmOpenMinor returns 10
    [ 24.033] drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    [ 24.033] (II) [drm] DRM interface version 1.4
    [ 24.033] (II) [drm] DRM open master succeeded.
    [ 24.033] (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    [ 24.033] (II) RADEON(0): [drm] framebuffer handle = 0xc0000000
    [ 24.033] (II) RADEON(0): [drm] added 1 reserved context for kernel
    [ 24.033] (II) RADEON(0): X context handle = 0x1
    [ 24.033] (II) RADEON(0): [drm] installed DRM signal handler
    [ 24.053] (II) RADEON(0): [pci] 32768 kB allocated with handle 0x10cf0900
    [ 24.053] (II) RADEON(0): [pci] ring handle = 0x2b7ff000
    [ 24.053] (II) RADEON(0): [pci] Ring mapped at 0x7f42cbd54000
    [ 24.053] (II) RADEON(0): [pci] Ring contents 0x00000000
    [ 24.053] (II) RADEON(0): [pci] ring read ptr handle = 0x1b800000
    [ 24.054] (II) RADEON(0): [pci] Ring read ptr mapped at 0x7f42d8691000
    [ 24.054] (II) RADEON(0): [pci] Ring read ptr contents 0x00000000
    [ 24.054] (II) RADEON(0): [pci] vertex/indirect buffers handle = 0x2b800000
    [ 24.054] (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x7f42cbb54000
    [ 24.054] (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
    [ 24.054] (II) RADEON(0): [pci] GART texture map handle = 0x2b801000
    [ 24.054] (II) RADEON(0): [pci] GART Texture map mapped at 0x7f42c9ed4000
    [ 24.054] (II) RADEON(0): [drm] register handle = 0x2fff9000
    [ 24.054] (II) RADEON(0): [dri] Visual configs initialized
    [ 24.133] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 24.133] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800 0xbfffb800
    [ 24.133] (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    [ 24.233] (==) RADEON(0): Backing store disabled
    [ 24.234] (II) RADEON(0): [DRI] installation complete
    [ 24.287] (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    [ 24.287] (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    [ 24.287] (II) RADEON(0): [drm] dma control initialized, using IRQ 17
    [ 24.287] (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    [ 24.287] (WW) RADEON(0): DRI init changed memory map, adjusting ...
    [ 24.287] (WW) RADEON(0): MC_FB_LOCATION was: 0xbfffb800 is: 0xbfffb800
    [ 24.287] (WW) RADEON(0): MC_AGP_LOCATION was: 0xffffffc0 is: 0xc1ffc000
    [ 24.287] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 24.287] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800 0xbfffb800
    [ 24.287] (II) RADEON(0): MC_AGP_LOCATION : 0xc1ffc000
    [ 24.387] (II) RADEON(0): Direct rendering enabled
    [ 24.387] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 24.387] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 24.387] (II) RADEON(0): num quad-pipes is 1
    [ 24.387] (II) EXA(0): Offscreen pixmap area of 54747136 bytes
    [ 24.387] (II) EXA(0): Driver registered support for the following operations:
    [ 24.387] (II) Solid
    [ 24.387] (II) Copy
    [ 24.387] (II) Composite (RENDER acceleration)
    [ 24.387] (II) UploadToScreen
    [ 24.387] (II) DownloadFromScreen
    [ 24.387] (II) RADEON(0): Acceleration enabled
    [ 24.387] (==) RADEON(0): DPMS enabled
    [ 24.387] (==) RADEON(0): Silken mouse enabled
    [ 24.388] (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    [ 24.388] (II) Loading sub module "theatre_detect"
    [ 24.388] (II) LoadModule: "theatre_detect"
    [ 24.388] (II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
    [ 24.399] (II) Module theatre_detect: vendor="X.Org Foundation"
    [ 24.399] compiled for 1.9.0, module version = 1.0.0
    [ 24.400] ABI class: X.Org Video Driver, version 8.0
    [ 24.400] (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    [ 24.400] (II) RADEON(0): Set up overlay video
    [ 24.400] (II) RADEON(0): Set up textured video
    [ 24.418] disable TVDAC
    [ 24.918] disable TV
    [ 25.436] init memmap
    [ 25.436] init common
    [ 25.436] init crtc1
    [ 25.436] init pll1
    [ 25.436] restore memmap
    [ 25.436] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 25.436] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800 0xbfffb800
    [ 25.436] (II) RADEON(0): MC_AGP_LOCATION : 0xc1ffc000
    [ 25.536] restore common
    [ 25.536] restore crtc1
    [ 25.536] restore pll1
    [ 25.536] set RMX
    [ 25.536] set LVDS
    [ 25.536] enable LVDS
    [ 26.537] disable TVDAC
    [ 26.537] init memmap
    [ 26.537] init common
    [ 26.537] init crtc2
    [ 26.554] init pll2
    [ 26.554] freq: 108000000
    [ 26.554] best_freq: 107996667
    [ 26.554] best_feedback_div: 181
    [ 26.554] best_frac_feedback_div: 0
    [ 26.554] best_ref_div: 12
    [ 26.555] best_post_div: 2
    [ 26.555] restore memmap
    [ 26.555] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 26.555] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800 0xbfffb800
    [ 26.555] (II) RADEON(0): MC_AGP_LOCATION : 0xc1ffc000
    [ 26.655] restore common
    [ 26.655] restore crtc2
    [ 26.655] restore pll2
    [ 26.660] finished PLL2
    [ 26.660] set TVDAC
    [ 26.660] enable LVDS
    [ 27.160] enable TVDAC
    [ 27.160] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 27.160] (--) RandR disabled
    [ 27.160] (II) Initializing built-in extension Generic Event Extension
    [ 27.160] (II) Initializing built-in extension SHAPE
    [ 27.161] (II) Initializing built-in extension MIT-SHM
    [ 27.161] (II) Initializing built-in extension XInputExtension
    [ 27.161] (II) Initializing built-in extension XTEST
    [ 27.161] (II) Initializing built-in extension BIG-REQUESTS
    [ 27.161] (II) Initializing built-in extension SYNC
    [ 27.161] (II) Initializing built-in extension XKEYBOARD
    [ 27.161] (II) Initializing built-in extension XC-MISC
    [ 27.161] (II) Initializing built-in extension SECURITY
    [ 27.161] (II) Initializing built-in extension XINERAMA
    [ 27.161] (II) Initializing built-in extension XFIXES
    [ 27.161] (II) Initializing built-in extension RENDER
    [ 27.161] (II) Initializing built-in extension RANDR
    [ 27.161] (II) Initializing built-in extension COMPOSITE
    [ 27.161] (II) Initializing built-in extension DAMAGE
    [ 27.172] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 27.172] drmOpenDevice: node name is /dev/dri/card0
    [ 27.172] drmOpenDevice: open result is 11, (OK)
    [ 27.172] drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    [ 27.172] drmOpenDevice: node name is /dev/dri/card0
    [ 27.172] drmOpenDevice: open result is 11, (OK)
    [ 27.172] drmOpenByBusid: drmOpenMinor returns 11
    [ 27.172] drmOpenByBusid: Interface 1.4 failed, trying 1.1
    [ 27.172] drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    [ 27.278]
    Backtrace:
    [ 27.289] 0: /usr/bin/X (xorg_backtrace+0x28) [0x49f1a8]
    [ 27.289] 1: /usr/bin/X (0x400000+0x60239) [0x460239]
    [ 27.289] 2: /lib/libpthread.so.0 (0x7f42d79da000+0xf1c0) [0x7f42d79e91c0]
    [ 27.289] Segmentation fault at address (nil)
    [ 27.289]
    Fatal server error:
    [ 27.289] Caught signal 11 (Segmentation fault). Server aborting
    [ 27.289]
    [ 27.289]
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [ 27.289] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 27.289]
    [ 27.790] disable TVDAC
    [ 27.790] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 27.790] (II) RADEON(0): MC_FB_LOCATION : 0xbfffb800 0xbfffb800
    [ 27.790] (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    [ 27.895] finished PLL2
    [ 27.945] finished PLL1
    [ 27.945] Entering Restore TV
    [ 27.945] Restore TV PLL
    [ 27.946] Restore TVHV
    [ 27.946] Restore TV Restarts
    [ 27.946] Restore Timing Tables
    [ 27.946] Restore TV standard
    [ 27.946] Leaving Restore TV
    --mod edit: put that in a code block please
    Last edited by litemotiv (2010-11-26 10:56:19)

  • Building xorg-server fails

    Hi everyone
    I think I'm having the same problems as this guy: https://bugs.freedesktop.org/show_bug.cgi?id=12509
    To make sure that the suggested patch (from here: https://bugs.freedesktop.org/show_bug.cgi?id=12858) is really working I tried to rebuild xorg-server.
    But I just get some strange errors and I can't figure out where they come from
    I did 'make' in the folder that failed during makepkg
    Here's the output: http://phpfi.com/277365
    My system is completely up to date (I also tried building it after the core-update but no success)
    I'd appreciate any help
    Thanks in advance
    XazZ

    Yep. it should work with --disable-config-hal .
    Btw, thats how the patch was really commited :
    http://gitweb.freedesktop.org/?p=xorg/x … 1b4c747727
    You should be able to download this link and use it as a patch directly.
    If it works, open a bug report on bugs.archlinux.org with a link to the upstream bug report 12858, and with the link above (the patch that was actually commited).

  • [SOLVED] nvidia and xorg-server, slow start compared to nv

    I've seen many similar topics but none that have been solved, therefore the new topic.
    Starting xorg with nv driver takes just a few seconds to desktop, while using nvidia takes almost 10 seconds more to get to desktop. Although after reaching desktop everything works fine. I've used a minimal xorg.conf for each driver (replacing nvidia with nv):
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    EndSection
    The /var/log/Xorg.0.log when using nvidia:
    [ 22.779]
    X.Org X Server 1.12.2
    Release Date: 2012-05-29
    [ 22.779] X Protocol Version 11, Revision 0
    [ 22.779] Build Operating System: Linux 3.0.32-1-lts x86_64
    [ 22.779] Current Operating System: Linux yggdrasil 3.3.8-1-ARCH #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012 x86_64
    [ 22.779] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda2:root ro vga=773 quiet
    [ 22.779] Build Date: 30 May 2012 07:24:13PM
    [ 22.779]
    [ 22.779] Current version of pixman: 0.26.0
    [ 22.779] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 22.779] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22.779] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 9 21:37:16 2012
    [ 22.844] (==) Using config file: "/etc/X11/xorg.conf"
    [ 22.844] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 23.106] (==) No Layout section. Using the first Screen section.
    [ 23.106] (==) No screen section available. Using defaults.
    [ 23.106] (**) |-->Screen "Default Screen Section" (0)
    [ 23.106] (**) | |-->Monitor "<default monitor>"
    [ 23.106] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 23.106] (**) | |-->Device "Device0"
    [ 23.106] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 23.106] (==) Automatically adding devices
    [ 23.106] (==) Automatically enabling devices
    [ 23.219] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 23.219] Entry deleted from font path.
    [ 23.414] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 23.414] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 23.414] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 23.414] (II) Loader magic: 0x7c58e0
    [ 23.414] (II) Module ABI versions:
    [ 23.414] X.Org ANSI C Emulation: 0.4
    [ 23.414] X.Org Video Driver: 12.0
    [ 23.414] X.Org XInput driver : 16.0
    [ 23.414] X.Org Server Extension : 6.0
    [ 23.415] (--) PCI:*(0:2:0:0) 10de:0a70:144d:c079 rev 162, Mem @ 0xdc000000/16777216, 0xe0000000/268435456, 0xde000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
    [ 23.415] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 23.415] (II) LoadModule: "extmod"
    [ 23.453] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 23.487] (II) Module extmod: vendor="X.Org Foundation"
    [ 23.487] compiled for 1.12.2, module version = 1.0.0
    [ 23.487] Module class: X.Org Server Extension
    [ 23.487] ABI class: X.Org Server Extension, version 6.0
    [ 23.487] (II) Loading extension MIT-SCREEN-SAVER
    [ 23.487] (II) Loading extension XFree86-VidModeExtension
    [ 23.487] (II) Loading extension XFree86-DGA
    [ 23.487] (II) Loading extension DPMS
    [ 23.487] (II) Loading extension XVideo
    [ 23.487] (II) Loading extension XVideo-MotionCompensation
    [ 23.487] (II) Loading extension X-Resource
    [ 23.487] (II) LoadModule: "dbe"
    [ 23.487] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 23.512] (II) Module dbe: vendor="X.Org Foundation"
    [ 23.512] compiled for 1.12.2, module version = 1.0.0
    [ 23.512] Module class: X.Org Server Extension
    [ 23.512] ABI class: X.Org Server Extension, version 6.0
    [ 23.512] (II) Loading extension DOUBLE-BUFFER
    [ 23.512] (II) LoadModule: "glx"
    [ 23.512] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 26.824] (II) Module glx: vendor="NVIDIA Corporation"
    [ 26.868] compiled for 4.0.2, module version = 1.0.0
    [ 26.868] Module class: X.Org Server Extension
    [ 26.868] (II) NVIDIA GLX Module 295.53 Fri May 11 23:49:08 PDT 2012
    [ 26.869] (II) Loading extension GLX
    [ 26.869] (II) LoadModule: "record"
    [ 26.869] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 26.941] (II) Module record: vendor="X.Org Foundation"
    [ 26.941] compiled for 1.12.2, module version = 1.13.0
    [ 26.941] Module class: X.Org Server Extension
    [ 26.941] ABI class: X.Org Server Extension, version 6.0
    [ 26.941] (II) Loading extension RECORD
    [ 26.941] (II) LoadModule: "dri"
    [ 26.941] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 27.011] (II) Module dri: vendor="X.Org Foundation"
    [ 27.011] compiled for 1.12.2, module version = 1.0.0
    [ 27.011] ABI class: X.Org Server Extension, version 6.0
    [ 27.011] (II) Loading extension XFree86-DRI
    [ 27.011] (II) LoadModule: "dri2"
    [ 27.011] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 27.046] (II) Module dri2: vendor="X.Org Foundation"
    [ 27.047] compiled for 1.12.2, module version = 1.2.0
    [ 27.047] ABI class: X.Org Server Extension, version 6.0
    [ 27.047] (II) Loading extension DRI2
    [ 27.047] (II) LoadModule: "nvidia"
    [ 27.122] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 27.306] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 27.306] compiled for 4.0.2, module version = 1.0.0
    [ 27.306] Module class: X.Org Video Driver
    [ 27.608] (II) NVIDIA dlloader X Driver 295.53 Fri May 11 23:29:56 PDT 2012
    [ 27.608] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 27.617] (++) using VT number 7
    [ 27.678] (II) Loading sub module "fb"
    [ 27.678] (II) LoadModule: "fb"
    [ 27.850] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 27.870] (II) Module fb: vendor="X.Org Foundation"
    [ 27.870] compiled for 1.12.2, module version = 1.0.0
    [ 27.870] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.870] (II) Loading sub module "wfb"
    [ 27.870] (II) LoadModule: "wfb"
    [ 27.871] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 27.879] (II) Module wfb: vendor="X.Org Foundation"
    [ 27.879] compiled for 1.12.2, module version = 1.0.0
    [ 27.879] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.879] (II) Loading sub module "ramdac"
    [ 27.879] (II) LoadModule: "ramdac"
    [ 27.879] (II) Module "ramdac" already built-in
    [ 27.934] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 27.934] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 27.934] (==) NVIDIA(0): RGB weight 888
    [ 27.934] (==) NVIDIA(0): Default visual is TrueColor
    [ 27.934] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 27.935] (**) NVIDIA(0): Enabling 2D acceleration
    [ 29.873] (II) NVIDIA(GPU-0): Display (Chi Mei Optoelectronics corp. (DFP-0)) does not
    [ 29.873] (II) NVIDIA(GPU-0): support NVIDIA 3D Vision stereo.
    [ 30.786] (II) NVIDIA(0): NVIDIA GPU GeForce 310M (GT218) at PCI:2:0:0 (GPU-0)
    [ 30.786] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 30.786] (--) NVIDIA(0): VideoBIOS: 70.18.53.00.ff
    [ 30.786] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 30.786] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 30.789] (--) NVIDIA(0): Connected display device(s) on GeForce 310M at PCI:2:0:0
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0)
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0): 330.0 MHz maximum pixel
    [ 30.789] (--) NVIDIA(0): clock
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0): Internal Dual Link
    [ 30.789] (--) NVIDIA(0): LVDS
    [ 30.789] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 30.789] (**) NVIDIA(0): device Chi Mei Optoelectronics corp. (DFP-0) (Using EDID
    [ 30.789] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 30.836] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 30.836] (==) NVIDIA(0):
    [ 30.836] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 30.836] (==) NVIDIA(0): will be used as the requested mode.
    [ 30.836] (==) NVIDIA(0):
    [ 30.836] (II) NVIDIA(0): Validated modes:
    [ 30.836] (II) NVIDIA(0): "nvidia-auto-select"
    [ 30.836] (II) NVIDIA(0): Virtual screen size determined to be 1366 x 768
    [ 31.892] (--) NVIDIA(0): DPI set to (99, 102); computed from "UseEdidDpi" X config
    [ 31.892] (--) NVIDIA(0): option
    [ 31.892] (--) Depth 24 pixmap format is 32 bpp
    [ 31.892] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 31.900] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 34.862] (II) Loading extension NV-GLX
    [ 37.299] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 37.299] (==) NVIDIA(0): Backing store disabled
    [ 37.299] (==) NVIDIA(0): Silken mouse enabled
    [ 37.300] (==) NVIDIA(0): DPMS enabled
    [ 37.300] (II) Loading extension NV-CONTROL
    [ 37.300] (II) Loading extension XINERAMA
    [ 37.300] (II) Loading sub module "dri2"
    [ 37.300] (II) LoadModule: "dri2"
    [ 37.300] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 37.300] (II) Module dri2: vendor="X.Org Foundation"
    [ 37.300] compiled for 1.12.2, module version = 1.2.0
    [ 37.300] ABI class: X.Org Server Extension, version 6.0
    [ 37.300] (II) NVIDIA(0): [DRI2] Setup complete
    [ 37.300] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 37.301] (==) RandR enabled
    [ 37.301] (II) Initializing built-in extension Generic Event Extension
    [ 37.301] (II) Initializing built-in extension SHAPE
    [ 37.301] (II) Initializing built-in extension MIT-SHM
    [ 37.301] (II) Initializing built-in extension XInputExtension
    [ 37.301] (II) Initializing built-in extension XTEST
    [ 37.301] (II) Initializing built-in extension BIG-REQUESTS
    [ 37.301] (II) Initializing built-in extension SYNC
    [ 37.301] (II) Initializing built-in extension XKEYBOARD
    [ 37.301] (II) Initializing built-in extension XC-MISC
    [ 37.301] (II) Initializing built-in extension SECURITY
    [ 37.301] (II) Initializing built-in extension XINERAMA
    [ 37.301] (II) Initializing built-in extension XFIXES
    [ 37.301] (II) Initializing built-in extension RENDER
    [ 37.301] (II) Initializing built-in extension RANDR
    [ 37.301] (II) Initializing built-in extension COMPOSITE
    [ 37.301] (II) Initializing built-in extension DAMAGE
    [ 37.302] (II) Initializing extension GLX
    [ 38.717] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 38.717] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 38.717] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 38.717] (II) LoadModule: "evdev"
    [ 38.717] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 38.769] (II) Module evdev: vendor="X.Org Foundation"
    [ 38.769] compiled for 1.12.0, module version = 2.7.0
    [ 38.769] Module class: X.Org XInput Driver
    [ 38.769] ABI class: X.Org XInput driver, version 16.0
    [ 38.769] (II) Using input driver 'evdev' for 'Power Button'
    [ 38.769] (**) Power Button: always reports core events
    [ 38.769] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 38.769] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 38.769] (--) evdev: Power Button: Found keys
    [ 38.769] (II) evdev: Power Button: Configuring as keyboard
    [ 38.769] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 38.769] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 38.769] (**) Option "xkb_rules" "evdev"
    [ 38.769] (**) Option "xkb_model" "evdev"
    [ 38.769] (**) Option "xkb_layout" "se"
    [ 38.835] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 38.835] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 38.835] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 38.835] (II) Using input driver 'evdev' for 'Video Bus'
    [ 38.835] (**) Video Bus: always reports core events
    [ 38.835] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 38.835] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 38.835] (--) evdev: Video Bus: Found keys
    [ 38.835] (II) evdev: Video Bus: Configuring as keyboard
    [ 38.835] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input7/event7"
    [ 38.835] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 38.836] (**) Option "xkb_rules" "evdev"
    [ 38.836] (**) Option "xkb_model" "evdev"
    [ 38.836] (**) Option "xkb_layout" "se"
    [ 38.837] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 38.837] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 38.837] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 38.837] (II) Using input driver 'evdev' for 'Power Button'
    [ 38.837] (**) Power Button: always reports core events
    [ 38.837] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 38.837] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 38.837] (--) evdev: Power Button: Found keys
    [ 38.837] (II) evdev: Power Button: Configuring as keyboard
    [ 38.837] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 38.837] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 38.837] (**) Option "xkb_rules" "evdev"
    [ 38.837] (**) Option "xkb_model" "evdev"
    [ 38.837] (**) Option "xkb_layout" "se"
    [ 38.838] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 38.838] (II) No input driver specified, ignoring this device.
    [ 38.838] (II) This device may have been added with another device file.
    [ 38.838] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 38.838] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 38.838] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 38.838] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 38.838] (**) Sleep Button: always reports core events
    [ 38.838] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 38.839] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 38.839] (--) evdev: Sleep Button: Found keys
    [ 38.839] (II) evdev: Sleep Button: Configuring as keyboard
    [ 38.839] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
    [ 38.839] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 38.839] (**) Option "xkb_rules" "evdev"
    [ 38.839] (**) Option "xkb_model" "evdev"
    [ 38.839] (**) Option "xkb_layout" "se"
    [ 38.840] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 38.840] (II) No input driver specified, ignoring this device.
    [ 38.840] (II) This device may have been added with another device file.
    [ 38.840] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 38.840] (II) No input driver specified, ignoring this device.
    [ 38.840] (II) This device may have been added with another device file.
    [ 38.841] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 38.841] (II) No input driver specified, ignoring this device.
    [ 38.841] (II) This device may have been added with another device file.
    [ 38.841] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 38.841] (II) No input driver specified, ignoring this device.
    [ 38.841] (II) This device may have been added with another device file.
    [ 38.842] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [ 38.842] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 38.842] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 38.842] (**) Logitech USB Receiver: always reports core events
    [ 38.842] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event1"
    [ 38.842] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 38.842] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 38.842] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 38.842] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 38.842] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 38.842] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 38.842] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 38.842] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 38.842] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 38.842] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1/event1"
    [ 38.842] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 10)
    [ 38.843] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 38.843] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 38.844] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 38.844] (II) No input driver specified, ignoring this device.
    [ 38.844] (II) This device may have been added with another device file.
    [ 38.844] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [ 38.844] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 38.844] (**) Logitech USB Receiver: Applying InputClass "Keyboard Defaults"
    [ 38.844] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 38.844] (**) Logitech USB Receiver: always reports core events
    [ 38.844] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
    [ 38.844] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 38.844] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 38.844] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 38.845] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 38.845] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 38.845] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 38.845] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 38.845] (--) evdev: Logitech USB Receiver: Found keys
    [ 38.845] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 38.845] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 38.845] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 38.845] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 38.845] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 38.845] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input2/event2"
    [ 38.845] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 11)
    [ 38.845] (**) Option "xkb_rules" "evdev"
    [ 38.845] (**) Option "xkb_model" "evdev"
    [ 38.845] (**) Option "xkb_layout" "se"
    [ 38.845] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 38.845] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 38.846] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 38.846] (II) config/udev: Adding input device USB 2.0 PC Camera (/dev/input/event10)
    [ 38.846] (**) USB 2.0 PC Camera: Applying InputClass "evdev keyboard catchall"
    [ 38.846] (**) USB 2.0 PC Camera: Applying InputClass "Keyboard Defaults"
    [ 38.846] (II) Using input driver 'evdev' for 'USB 2.0 PC Camera'
    [ 38.846] (**) USB 2.0 PC Camera: always reports core events
    [ 38.846] (**) evdev: USB 2.0 PC Camera: Device: "/dev/input/event10"
    [ 38.846] (--) evdev: USB 2.0 PC Camera: Vendor 0x1210 Product 0x25f4
    [ 38.846] (--) evdev: USB 2.0 PC Camera: Found keys
    [ 38.846] (II) evdev: USB 2.0 PC Camera: Configuring as keyboard
    [ 38.846] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input10/event10"
    [ 38.846] (II) XINPUT: Adding extended input device "USB 2.0 PC Camera" (type: KEYBOARD, id 12)
    [ 38.846] (**) Option "xkb_rules" "evdev"
    [ 38.846] (**) Option "xkb_model" "evdev"
    [ 38.847] (**) Option "xkb_layout" "se"
    [ 38.847] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event11)
    [ 38.847] (II) No input driver specified, ignoring this device.
    [ 38.847] (II) This device may have been added with another device file.
    [ 38.847] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event12)
    [ 38.847] (II) No input driver specified, ignoring this device.
    [ 38.847] (II) This device may have been added with another device file.
    [ 38.847] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 38.847] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 38.847] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 38.847] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 38.847] (**) AT Translated Set 2 keyboard: always reports core events
    [ 38.847] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 38.847] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 38.847] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 38.847] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 38.848] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 38.848] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 38.848] (**) Option "xkb_rules" "evdev"
    [ 38.848] (**) Option "xkb_model" "evdev"
    [ 38.848] (**) Option "xkb_layout" "se"
    [ 38.848] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 38.848] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 38.848] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 38.848] (II) LoadModule: "synaptics"
    [ 38.848] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 38.911] (II) Module synaptics: vendor="X.Org Foundation"
    [ 38.911] compiled for 1.12.1, module version = 1.6.1
    [ 38.911] Module class: X.Org XInput Driver
    [ 38.911] ABI class: X.Org XInput driver, version 16.0
    [ 38.911] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 38.911] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 38.911] (**) Option "Device" "/dev/input/event9"
    [ 38.911] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5672
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4910
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 38.911] (**) Option "TapButton1" "1"
    [ 38.911] (**) Option "TapButton2" "2"
    [ 38.911] (**) Option "TapButton3" "3"
    [ 38.912] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 38.912] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event9"
    [ 38.912] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 38.912] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 38.913] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 38.913] (II) No input driver specified, ignoring this device.
    [ 38.913] (II) This device may have been added with another device file.
    [ 38.913] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 38.913] (II) No input driver specified, ignoring this device.
    [ 38.913] (II) This device may have been added with another device file.
    The /var/log/Xorg.0.log when using nv:
    [ 52.162]
    X.Org X Server 1.12.2
    Release Date: 2012-05-29
    [ 52.163] X Protocol Version 11, Revision 0
    [ 52.163] Build Operating System: Linux 3.0.32-1-lts x86_64
    [ 52.164] Current Operating System: Linux yggdrasil 3.3.8-1-ARCH #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012 x86_64
    [ 52.164] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda2:root ro vga=773 quiet
    [ 52.165] Build Date: 30 May 2012 07:24:13PM
    [ 52.165]
    [ 52.165] Current version of pixman: 0.26.0
    [ 52.166] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 52.166] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 52.168] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 9 21:30:26 2012
    [ 52.168] (==) Using config file: "/etc/X11/xorg.conf"
    [ 52.168] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 52.168] (==) No Layout section. Using the first Screen section.
    [ 52.168] (==) No screen section available. Using defaults.
    [ 52.168] (**) |-->Screen "Default Screen Section" (0)
    [ 52.168] (**) | |-->Monitor "<default monitor>"
    [ 52.168] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 52.168] (**) | |-->Device "Device0"
    [ 52.168] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 52.169] (==) Automatically adding devices
    [ 52.169] (==) Automatically enabling devices
    [ 52.169] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 52.169] Entry deleted from font path.
    [ 52.169] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 52.169] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 52.169] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 52.169] (II) Loader magic: 0x7c58e0
    [ 52.169] (II) Module ABI versions:
    [ 52.169] X.Org ANSI C Emulation: 0.4
    [ 52.169] X.Org Video Driver: 12.0
    [ 52.169] X.Org XInput driver : 16.0
    [ 52.169] X.Org Server Extension : 6.0
    [ 52.169] (--) PCI:*(0:2:0:0) 10de:0a70:144d:c079 rev 162, Mem @ 0xdc000000/16777216, 0xe0000000/268435456, 0xde000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
    [ 52.170] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 52.170] (II) LoadModule: "extmod"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 52.170] (II) Module extmod: vendor="X.Org Foundation"
    [ 52.170] compiled for 1.12.2, module version = 1.0.0
    [ 52.170] Module class: X.Org Server Extension
    [ 52.170] ABI class: X.Org Server Extension, version 6.0
    [ 52.170] (II) Loading extension MIT-SCREEN-SAVER
    [ 52.170] (II) Loading extension XFree86-VidModeExtension
    [ 52.170] (II) Loading extension XFree86-DGA
    [ 52.170] (II) Loading extension DPMS
    [ 52.170] (II) Loading extension XVideo
    [ 52.170] (II) Loading extension XVideo-MotionCompensation
    [ 52.170] (II) Loading extension X-Resource
    [ 52.170] (II) LoadModule: "dbe"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 52.170] (II) Module dbe: vendor="X.Org Foundation"
    [ 52.170] compiled for 1.12.2, module version = 1.0.0
    [ 52.170] Module class: X.Org Server Extension
    [ 52.170] ABI class: X.Org Server Extension, version 6.0
    [ 52.170] (II) Loading extension DOUBLE-BUFFER
    [ 52.170] (II) LoadModule: "glx"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 52.180] (II) Module glx: vendor="NVIDIA Corporation"
    [ 52.180] compiled for 4.0.2, module version = 1.0.0
    [ 52.180] Module class: X.Org Server Extension
    [ 52.180] (II) NVIDIA GLX Module 295.53 Fri May 11 23:49:08 PDT 2012
    [ 52.180] (II) Loading extension GLX
    [ 52.180] (II) LoadModule: "record"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 52.180] (II) Module record: vendor="X.Org Foundation"
    [ 52.180] compiled for 1.12.2, module version = 1.13.0
    [ 52.180] Module class: X.Org Server Extension
    [ 52.180] ABI class: X.Org Server Extension, version 6.0
    [ 52.180] (II) Loading extension RECORD
    [ 52.180] (II) LoadModule: "dri"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 52.180] (II) Module dri: vendor="X.Org Foundation"
    [ 52.180] compiled for 1.12.2, module version = 1.0.0
    [ 52.180] ABI class: X.Org Server Extension, version 6.0
    [ 52.180] (II) Loading extension XFree86-DRI
    [ 52.180] (II) LoadModule: "dri2"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 52.181] (II) Module dri2: vendor="X.Org Foundation"
    [ 52.181] compiled for 1.12.2, module version = 1.2.0
    [ 52.181] ABI class: X.Org Server Extension, version 6.0
    [ 52.181] (II) Loading extension DRI2
    [ 52.181] (II) LoadModule: "nv"
    [ 52.181] (II) Loading /usr/lib/xorg/modules/drivers/nv_drv.so
    [ 52.181] (II) Module nv: vendor="X.Org Foundation"
    [ 52.181] compiled for 1.12.0.901, module version = 2.1.18
    [ 52.181] Module class: X.Org Video Driver
    [ 52.181] ABI class: X.Org Video Driver, version 12.0
    [ 52.181] (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2,
    Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64,
    Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400,
    GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go,
    GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra,
    Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420,
    GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go,
    GeForce4 420 Go 32M, GeForce4 460 Go, Quadro4 550 XGL,
    GeForce4 440 Go 64M, Quadro NVS, Quadro4 500 GoGL,
    GeForce4 410 Go 16M, GeForce4 MX 440 with AGP8X,
    GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X,
    GeForce4 MX 4000, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL,
    Quadro4 NVS 280 SD, Quadro4 380 XGL, Quadro NVS 50 PCI,
    GeForce4 448 Go, GeForce4 MX Integrated GPU, GeForce3,
    GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600,
    GeForce4 Ti 4400, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL,
    Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X,
    GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL,
    Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra,
    GeForce FX 5800, Quadro FX 2000, Quadro FX 1000,
    GeForce FX 5600 Ultra, GeForce FX 5600, GeForce FX 5600XT,
    GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700,
    GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200,
    GeForce FX 5200LE, GeForce FX Go5200, GeForce FX Go5250,
    GeForce FX 5500, GeForce FX 5100, GeForce FX Go5200 32M/64M,
    Quadro NVS 55/280 PCI, Quadro FX 500/600 PCI,
    GeForce FX Go53xx Series, GeForce FX Go5100, GeForce FX 5900 Ultra,
    GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra,
    GeForce FX 5900ZT, Quadro FX 3000, Quadro FX 700,
    GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE,
    GeForce FX 5700VE, GeForce FX Go5700, GeForce FX Go5700,
    Quadro FX Go1000, Quadro FX 1100, GeForce 6800 Ultra, GeForce 6800,
    GeForce 6800 LE, GeForce 6800 XE, GeForce 6800 XT, GeForce 6800 GT,
    GeForce 6800 GT, GeForce 6800 GS, GeForce 6800 XT, Quadro FX 4000,
    GeForce 6800 GS, GeForce 6800, GeForce 6800 LE, GeForce 6800 XT,
    GeForce Go 6800, GeForce Go 6800 Ultra, Quadro FX Go1400,
    Quadro FX 3450/4000 SDI, Quadro FX 1400, GeForce 6600 GT,
    GeForce 6600, GeForce 6600 LE, GeForce 6600 VE, GeForce Go 6600,
    GeForce 6610 XL, GeForce Go 6600 TE/6200 TE, GeForce 6700 XL,
    GeForce Go 6600, GeForce Go 6600 GT, Quadro NVS 440, Quadro FX 550,
    Quadro FX 550, Quadro FX 540, GeForce 6200, GeForce 6500,
    GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM),
    GeForce 6200 LE, GeForce Go 6200, Quadro NVS 285, GeForce Go 6400,
    GeForce Go 6200, GeForce Go 6400, GeForce 6250, GeForce 7100 GS,
    GeForce 6800, GeForce 6800 LE, GeForce 6800 GT, GeForce 6800 XT,
    GeForce 6200, GeForce 6200 A-LE, GeForce 7800 GTX, GeForce 7800 GTX,
    GeForce 7800 GT, GeForce 7800 GS, GeForce 7800 SLI, GeForce Go 7800,
    GeForce Go 7800 GTX, Quadro FX 4500, GeForce 7350 LE,
    GeForce 7300 LE, GeForce 7300 SE, GeForce Go 7200, GeForce Go 7300,
    GeForce Go 7400, GeForce Go 7400 GS, Quadro NVS 110M,
    Quadro NVS 120M, Quadro FX 350M, GeForce 7500 LE, Quadro FX 350,
    GeForce 7300 GS, GeForce 7650 GS, GeForce 7600 GT, GeForce 7600 GS,
    GeForce 7300 GT, GeForce 7600 LE, GeForce 7300 GT, GeForce Go 7700,
    GeForce Go 7600, GeForce Go 7600 GT, Quadro NVS 300M,
    GeForce Go 7900 SE, Quadro FX 550M, Quadro FX 560, GeForce 7900 GTX,
    GeForce 7900 GT, GeForce 7900 GS, GeForce 7950 GX2, GeForce 7950 GX2,
    GeForce 7950 GT, GeForce Go 7950 GTX, GeForce Go 7900 GS,
    GeForce Go 7900 GTX, Quadro FX 2500M, Quadro FX 1500M,
    Quadro FX 5500, Quadro FX 3500, Quadro FX 1500, Quadro FX 4500 X2,
    GeForce 6150, GeForce 6150 LE, GeForce 6100, GeForce Go 6150,
    Quadro NVS 210S / NVIDIA GeForce 6150LE, GeForce Go 6100,
    GeForce 6150SE, GeForce 6100 nForce 405, GeForce 6100 nForce 400,
    GeForce 6100 nForce 420, GeForce 7150M / nForce 630M,
    GeForce 7000M / nForce 610M, GeForce 7050 PV / nForce 630a,
    GeForce 7050 PV / nForce 630a, GeForce 7025 / nForce 630a,
    GeForce 8800 GTX, GeForce 8800 GTS, GeForce 8800 Ultra,
    Quadro FX 5600, Quadro FX 4600, GeForce 8600 GTS, GeForce 8600 GT,
    GeForce 8600 GT, GeForce 8600 GS, GeForce 8400 GS, GeForce 9500M GS,
    GeForce 8300 GS, GeForce 8600M GT, GeForce 9650M GS,
    GeForce 8700M GT, Quadro FX 370, Quadro NVS 320M, Quadro FX 570M,
    Quadro FX 1600M, Quadro FX 570, Quadro FX 1700, GeForce GT 330,
    GeForce 8400 SE, GeForce 8500 GT, GeForce 8400 GS, GeForce 8300 GS,
    GeForce 8400 GS, GeForce 8600M GS, GeForce 8400M GT,
    GeForce 8400M GS, GeForce 8400M G, Quadro NVS 140M, Quadro NVS 130M,
    Quadro NVS 135M, GeForce 9400 GT, Quadro FX 360M, GeForce 9300M G,
    Quadro NVS 290, GeForce GTX 295, GeForce GTX 280, GeForce GTX 260,
    GeForce GTX 285, GeForce GTX 275, GeForce GTX 260, GeForce GTX 295,
    Quadroplex 2200 D2, Quadroplex 2200 S4, Quadro CX, Quadro FX 5800,
    Quadro FX 4800, Quadro FX 3800, GeForce 8800 GTS 512,
    GeForce 9800 GT, GeForce 8800 GT, GeForce GT 230, GeForce 9800 GX2,
    GeForce 9800 GT, GeForce 8800 GS, GeForce GTS 240, GeForce 9800M GTX,
    GeForce 8800M GTS, GeForce GTX 280M, GeForce 9800M GT,
    GeForce 8800M GTX, GeForce 8800 GS, GeForce GTX 285M,
    GeForce 9600 GSO, GeForce 8800 GT, GeForce 9800 GTX/9800 GTX+,
    GeForce 9800 GTX+, GeForce 9800 GT, GeForce GTS 250,
    GeForce 9800M GTX, GeForce GTX 260M, Quadro FX 4700 X2,
    Quadro FX 3700, Quadro VX 200, Quadro FX 3600M, Quadro FX 2800M,
    Quadro FX 3700M, Quadro FX 3800M, GeForce 9600 GT, GeForce 9600 GS,
    GeForce 9600 GSO 512, GeForce GT 130, GeForce GT 140,
    GeForce 9800M GTS, GeForce 9700M GTS, GeForce 9800M GS,
    GeForce 9800M GTS, GeForce 9600 GT, GeForce 9600 GT,
    GeForce GTS 160M, GeForce GTS 150M, GeForce 9600 GSO,
    GeForce 9600 GT, Quadro FX 1800, Quadro FX 2700M, GeForce 9500 GT,
    GeForce 9400 GT, GeForce 9500 GT, GeForce 9500 GS, GeForce 9500 GS,
    GeForce GT 120, GeForce 9600M GT, GeForce 9600M GS, GeForce 9600M GT,
    GeForce 9700M GT, GeForce 9500M G, GeForce 9650M GT, GeForce G 110M,
    GeForce GT 130M, GeForce GT 120M, GeForce GT 220M, GeForce 9650 S,
    Quadro FX 380, Quadro FX 580, Quadro FX 1700M, GeForce 9400 GT,
    Quadro FX 770M, GeForce 9300 GE, GeForce 9300 GS, GeForce 8400,
    GeForce 8400 SE, GeForce 8400 GS, GeForce 9300M GS, GeForce G100,
    GeForce 9300 SE, GeForce 9200M GS, GeForce 9300M GS, Quadro NVS 150M,
    Quadro NVS 160M, GeForce G 105M, GeForce G 103M, GeForce G105M,
    Quadro NVS 420, Quadro FX 370 LP, Quadro NVS 450, Quadro FX 370M,
    Quadro NVS 295, GeForce 9100M G, GeForce 8200M G, GeForce 9200,
    GeForce 9100, GeForce 8300, GeForce 8200, nForce 730a, GeForce 9200,
    nForce 980a/780a SLI, nForce 750a SLI, GeForce 8100 / nForce 720a,
    GeForce 9400, GeForce 9400, GeForce 9400M G, GeForce 9400M,
    GeForce 9300, ION, GeForce 9400M G, GeForce 9400, nForce 760i SLI,
    GeForce 9400, GeForce 9300 / nForce 730i, GeForce 9200,
    GeForce 9100M G, GeForce 8200M G, GeForce 9400M, GeForce 9200,
    GeForce G102M, GeForce G102M, ION, ION, GeForce 9400, ION, ION LE,
    ION LE, GeForce GT 220, GeForce 315, GeForce 210, GeForce GT 230M,
    GeForce GT 330M, GeForce GT 230M, GeForce GT 330M, NVS 5100M,
    GeForce GT 320M, GeForce GT 240M, GeForce GT 325M, Quadro FX 880M,
    GeForce G210, GeForce 205, GeForce 310, ION, GeForce 210,
    GeForce 310, GeForce 315, GeForce G105M, GeForce G105M, NVS 2100M,
    NVS 3100M, GeForce 305M, ION, GeForce 310M, GeForce 305M,
    GeForce 310M, GeForce 305M, GeForce G210M, GeForce 310M,
    Quadro FX 380 LP, Quadro FX 380M, GeForce GT 330, GeForce GT 320,
    GeForce GT 240, GeForce GT 340, GeForce GT 330, GeForce GTS 260M,
    GeForce GTS 250M, GeForce 315, GeForce GT 335M, GeForce GTS 350M,
    GeForce GTS 360M, Quadro FX 1800M
    [ 52.183] (--) using VT number 7
    [ 52.211] (--) NV: Found NVIDIA GeForce 310M at 02@00:00:0
    [ 52.211] (II) Loading sub module "int10"
    [ 52.211] (II) LoadModule: "int10"
    [ 52.211] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 52.233] (II) Module int10: vendor="X.Org Foundation"
    [ 52.233] compiled for 1.12.2, module version = 1.0.0
    [ 52.233] ABI class: X.Org Video Driver, version 12.0
    [ 52.233] (II) NV(0): Initializing int10
    [ 52.234] (II) NV(0): Bad V_BIOS checksum
    [ 52.234] (II) NV(0): Primary V_BIOS segment is: 0xc000
    [ 52.234] (--) NV(0): Console is VGA mode 0x105
    [ 52.234] (II) NV(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 52.234] (==) NV(0): Depth 24, (--) framebuffer bpp 32
    [ 52.234] (==) NV(0): RGB weight 888
    [ 52.234] (==) NV(0): Default visual is TrueColor
    [ 52.235] (==) NV(0): Using hardware cursor
    [ 52.235] (==) NV(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 52.245] (II) NV(0): MMIO registers mapped at 0x7f5b4a0aa000
    [ 52.245] (--) NV(0): Total video RAM: 512.0 MB
    [ 52.245] (--) NV(0): BAR1 size: 256.0 MB
    [ 52.245] (--) NV(0): Mapped memory: 256.0 MB
    [ 52.317] (II) NV(0): Linear framebuffer mapped at 0x7f5b3a0aa000
    [ 52.317] (II) Loading sub module "i2c"
    [ 52.317] (II) LoadModule: "i2c"
    [ 52.317] (II) Module "i2c" already built-in
    [ 52.317] (II) Loading sub module "ddc"
    [ 52.317] (II) LoadModule: "ddc"
    [ 52.317] (II) Module "ddc" already built-in
    [ 52.317] (--) NV(0): Connector map:
    [ 52.317] (--) NV(0): Bus 3 -> SOR0 (LVDS)
    [ 52.317] (--) NV(0): Bus 0 -> DAC1
    [ 52.317] (--) NV(0): Bus 8 -> SOR3
    [ 52.317] (--) NV(0): Load detection: 340
    [ 52.317] (II) NV(0): I2C bus "I2C0" initialized.
    [ 52.317] (II) NV(0): Output VGA1 has no monitor section
    [ 52.317] (II) NV(0): I2C bus "I2C8" initialized.
    [ 52.317] (II) NV(0): Output DVI3 has no monitor section
    [ 52.317] (II) NV(0): LVDS native size 1366x768
    [ 52.317] (II) NV(0): Output LVDS has no monitor section
    [ 52.317] (II) NV(0): I2C bus "I2C3 (LVDS)" initialized.
    [ 52.317] (II) NV(0): Probing for EDID on I2C bus 0...
    [ 52.317] (II) NV(0): I2C device "I2C0:ddc2" registered at address 0xA0.
    [ 52.321] (II) NV(0): ... none found
    [ 52.321] (--) NV(0): Trying load detection on VGA1 ... nothing.
    [ 52.366] (II) NV(0): EDID for output VGA1
    [ 52.366] (II) NV(0): Probing for EDID on I2C bus 8...
    [ 52.366] (II) NV(0): I2C device "I2C8:ddc2" registered at address 0xA0.
    [ 52.370] (II) NV(0): ... none found
    [ 52.370] (II) NV(0): EDID for output DVI3
    [ 52.370] (II) NV(0): Probing for EDID on I2C bus 3...
    [ 52.370] (II) NV(0): I2C device "I2C3 (LVDS):ddc2" registered at address 0xA0.
    [ 52.422] (--) NV(0): DDC detected a DFP:
    [ 52.422] (II) NV(0): Manufacturer: CMO Model: 1680 Serial#: 0
    [ 52.422] (II) NV(0): Year: 2009 Week: 4
    [ 52.422] (II) NV(0): EDID Version: 1.3
    [ 52.422] (II) NV(0): Digital Display Input
    [ 52.422] (II) NV(0): Max Image Size [cm]: horiz.: 35 vert.: 19
    [ 52.422] (II) NV(0): Gamma: 2.20
    [ 52.422] (II) NV(0): No DPMS capabilities specified
    [ 52.422] (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 52.422] (II) NV(0): First detailed timing is preferred mode
    [ 52.422] (II) NV(0): redX: 0.602 redY: 0.340 greenX: 0.306 greenY: 0.530
    [ 52.422] (II) NV(0): blueX: 0.151 blueY: 0.120 whiteX: 0.313 whiteY: 0.329
    [ 52.422] (II) NV(0): Manufacturer's mask: 0
    [ 52.422] (II) NV(0): Supported detailed timing:
    [ 52.422] (II) NV(0): clock: 75.5 MHz Image Size: 344 x 193 mm
    [ 52.422] (II) NV(0): h_active: 1366 h_sync: 1397 h_sync_end 1462 h_blank_end 1560 h_border: 0
    [ 52.422] (II) NV(0): v_active: 768 v_sync: 772 v_sync_end 784 v_blanking: 806 v_border: 0
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): CMO
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): EDID (in hex):
    [ 52.422] (II) NV(0): 00ffffffffffff000daf801600000000
    [ 52.422] (II) NV(0): 04130103802313780a07f59a574e8726
    [ 52.422] (II) NV(0): 1e505400000001010101010101010101
    [ 52.422] (II) NV(0): 0101010101017e1d56c2500026301f41
    [ 52.422] (II) NV(0): 4c0058c110000018000000fe004e3135
    [ 52.422] (II) NV(0): 3642362d4c30360a2020000000fe0043
    [ 52.422] (II) NV(0): 4d4f0a202020202020202020000000fe
    [ 52.422] (II) NV(0): 004e31353642362d4c30360a20200048
    [ 52.422] (II) NV(0): EDID for output LVDS
    [ 52.422] (II) NV(0): Manufacturer: CMO Model: 1680 Serial#: 0
    [ 52.422] (II) NV(0): Year: 2009 Week: 4
    [ 52.422] (II) NV(0): EDID Version: 1.3
    [ 52.422] (II) NV(0): Digital Display Input
    [ 52.422] (II) NV(0): Max Image Size [cm]: horiz.: 35 vert.: 19
    [ 52.422] (II) NV(0): Gamma: 2.20
    [ 52.422] (II) NV(0): No DPMS capabilities specified
    [ 52.422] (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 52.422] (II) NV(0): First detailed timing is preferred mode
    [ 52.422] (II) NV(0): redX: 0.602 redY: 0.340 greenX: 0.306 greenY: 0.530
    [ 52.422] (II) NV(0): blueX: 0.151 blueY: 0.120 whiteX: 0.313 whiteY: 0.329
    [ 52.422] (II) NV(0): Manufacturer's mask: 0
    [ 52.422] (II) NV(0): Supported detailed timing:
    [ 52.422] (II) NV(0): clock: 75.5 MHz Image Size: 344 x 193 mm
    [ 52.422] (II) NV(0): h_active: 1366 h_sync: 1397 h_sync_end 1462 h_blank_end 1560 h_border: 0
    [ 52.422] (II) NV(0): v_active: 768 v_sync: 772 v_sync_end 784 v_blanking: 806 v_border: 0
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): CMO
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): EDID (in hex):
    [ 52.422] (II) NV(0): 00ffffffffffff000daf801600000000
    [ 52.422] (II) NV(0): 04130103802313780a07f59a574e8726
    [ 52.422] (II) NV(0): 1e505400000001010101010101010101
    [ 52.422] (II) NV(0): 0101010101017e1d56c2500026301f41
    [ 52.422] (II) NV(0): 4c0058c110000018000000fe004e3135
    [ 52.422] (II) NV(0): 3642362d4c30360a2020000000fe0043
    [ 52.422] (II) NV(0): 4d4f0a202020202020202020000000fe
    [ 52.422] (II) NV(0): 004e31353642362d4c30360a20200048
    [ 52.422] (II) NV(0): EDID vendor "CMO", prod id 5760
    [ 52.422] (II) NV(0): Printing probed modes for output LVDS
    [ 52.422] (II) NV(0): Modeline "1366x768"x60.0 75.50 1366 1397 1462 1560 768 772 784 806 -hsync -vsync (48.4 kHz eP)
    [ 52.422] (II) NV(0): Output VGA1 disconnected
    [ 52.422] (II) NV(0): Output DVI3 disconnected
    [ 52.422] (II) NV(0): Output LVDS connected
    [ 52.422] (II) NV(0): Using exact sizes for initial modes
    [ 52.422] (II) NV(0): Output LVDS using initial mode 1366x768
    [ 52.422] (II) NV(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 52.422] (--) NV(0): Virtual size is 1366x1366 (pitch 1536)
    [ 52.422] (**) NV(0): Driver mode "1366x768": 75.5 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 52.422] (II) NV(0): Modeline "1366x768"x60.0 75.50 1366 1397 1462 1560 768 772 784 806 -hsync -vsync (48.4 kHz eP)
    [ 52.422] (==) NV(0): DPI set to (96, 96)
    [ 52.422] (II) Loading sub module "fb"
    [ 52.422] (II) LoadModule: "fb"
    [ 52.433] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 52.447] (II) Module fb: vendor="X.Org Foundation"
    [ 52.447] compiled for 1.12.2, module version = 1.0.0
    [ 52.447] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 52.447] (II) Loading sub module "xaa"
    [ 52.447] (II) LoadModule: "xaa"
    [ 52.447] (II) Loading /usr/lib/xorg/modules/libxaa.so
    [ 52.458] (II) Module xaa: vendor="X.Org Foundation"
    [ 52.458] compiled for 1.12.2, module version = 1.2.1
    [ 52.458] ABI class: X.Org Video Driver, version 12.0
    [ 52.458] (II) Loading sub module "ramdac"
    [ 52.458] (II) LoadModule: "ramdac"
    [ 52.458] (II) Module "ramdac" already built-in
    [ 52.458] (--) Depth 24 pixmap format is 32 bpp
    [ 52.475] (--) NV(0): 183.99 MB available for offscreen pixmaps
    [ 52.507] (II) NV(0): Using XFree86 Acceleration Architecture (XAA)
    [ 52.507] Screen to screen bit blits
    [ 52.507] Solid filled rectangles
    [ 52.507] 8x8 mono pattern filled rectangles
    [ 52.507] Indirect CPU to Screen color expansion
    [ 52.507] Solid Lines
    [ 52.507] Scanline Image Writes
    [ 52.508] Setting up tile and stipple cache:
    [ 52.508] 32 128x128 slots
    [ 52.508] 32 256x256 slots
    [ 52.508] 16 512x512 slots
    [ 52.508] (==) NV(0): Backing store disabled
    [ 52.508] (==) NV(0): Silken mouse enabled
    [ 52.508] (II) NV(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 52.508] (==) NV(0): DPMS enabled
    [ 55.081] (--) RandR disabled
    [ 55.081] (II) Initializing built-in extension Generic Event Extension
    [ 55.081] (II) Initializing built-in extension SHAPE
    [ 55.081] (II) Initializing built-in extension MIT-SHM
    [ 55.081] (II) Initializing built-in extension XInputExtension
    [ 55.081] (II) Initializing built-in extension XTEST
    [ 55.081] (II) Initializing built-in extension BIG-REQUESTS
    [ 55.081] (II) Initializing built-in extension SYNC
    [ 55.081] (II) Initializing built-in extension XKEYBOARD
    [ 55.081] (II) Initializing built-in extension XC-MISC
    [ 55.081] (II) Initializing built-in extension SECURITY
    [ 55.081] (II) Initializing built-in extension XINERAMA
    [ 55.081] (II) Initializing built-in extension XFIXES
    [ 55.081] (II) Initializing built-in extension RENDER
    [ 55.081] (II) Initializing built-in extension RANDR
    [ 55.081] (II) Initializing built-in extension COMPOSITE
    [ 55.081] (II) Initializing built-in extension DAMAGE
    [ 55.103] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    [ 55.132] (II) NV(0): Setting screen physical size to 361 x 203
    [ 55.715] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 55.715] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 55.715] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 55.715] (II) LoadModule: "evdev"
    [ 55.715] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 55.725] (II) Module evdev: vendor="X.Org Foundation"
    [ 55.725] compiled for 1.12.0, module version = 2.7.0
    [ 55.725] Module class: X.Org XInput Driver
    [ 55.725] ABI class: X.Org XInput driver, version 16.0
    [ 55.725] (II) Using input driver 'evdev' for 'Power Button'
    [ 55.725] (**) Power Button: always reports core events
    [ 55.725] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 55.725] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 55.725] (--) evdev: Power Button: Found keys
    [ 55.725] (II) evdev: Power Button: Configuring as keyboard
    [ 55.725] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 55.725] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 55.725] (**) Option "xkb_rules" "evdev"
    [ 55.725] (**) Option "xkb_model" "evdev"
    [ 55.725] (**) Option "xkb_layout" "se"
    [ 55.918] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 55.918] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 55.918] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 55.918] (II) Using input driver 'evdev' for 'Video Bus'
    [ 55.918] (**) Video Bus: always reports core events
    [ 55.918] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 55.918] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 55.918] (--) evdev: Video Bus: Found keys
    [ 55.918] (II) evdev: Video Bus: Configuring as keyboard
    [ 55.918] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input7/event7"
    [ 55.918] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 55.918] (**) Option "xkb_rules" "evdev"
    [ 55.918] (**) Option "xkb_model" "evdev"
    [ 55.918] (**) Option "xkb_layout" "se"
    [ 55.919] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 55.919] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 55.919] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 55.919] (II) Using input driver 'evdev' for 'Power Button'
    [ 55.919] (**) Power Button: always reports core events
    [ 55.919] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 55.919] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 55.919] (--) evdev: Power Button: Found keys
    [ 55.919] (II) evdev: Power Button: Configuring as keyboard
    [ 55.919] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 55.919] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 55.919] (**) Option "xkb_rules" "evdev"
    [ 55.919] (**) Option "xkb_model" "evdev"
    [ 55.919] (**) Option "xkb_layout" "se"
    [ 55.920] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 55.920] (II) No input driver specified, ignoring this device.
    [ 55.920] (II) This device may have been added with another device file.
    [ 55.921] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 55.921] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 55.921] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 55.921] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 55.921] (**) Sleep Button: always reports core events
    [ 55.921] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 55.921] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 55.921] (--) evdev: Sleep Button: Found keys
    [ 55.921] (II) evdev: Sleep Button: Configuring as keyboard
    [ 55.921] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
    [ 55.921] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 55.921] (**) Option "xkb_rules" "evdev"
    [ 55.921] (**) Option "xkb_model" "evdev"
    [ 55.921] (**) Option "xkb_layout" "se"
    [ 55.922] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 55.922] (II) No input driver specified, ignoring this device.
    [ 55.922] (II) This device may have been added with another device file.
    [ 55.923] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 55.923] (II) No input driver specified, ignoring this device.
    [ 55.923] (II) This device may have been added with another device file.
    [ 55.923] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 55.923] (II) No input driver specified, ignoring this device.
    [ 55.923] (II) This device may have been added with another device file.
    [ 55.924] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 55.924] (II) No input driver specified, ignoring this device.
    [ 55.924] (II) This device may have been added with another device file.
    [ 55.924] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [ 55.924] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 55.924] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 55.924] (**) Logitech USB Receiver: always reports core events
    [ 55.924] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event1"
    [ 55.925] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 55.925] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 55.925] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 55.925] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 55.925] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 55.925] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 55.925] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 55.925] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 55.925] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 55.925] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1/event1"
    [ 55.925] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 10)
    [ 55.925] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 55.925] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 55.926] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 55.926] (II) No input driver specified, ignoring this device.
    [ 55.926] (II) This device may have been added with another device file.
    [ 55.926] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [ 55.927] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 55.927] (**) Logitech USB Receiver: Applying InputClass "Keyboard Defaults"
    [ 55.927] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 55.927] (**) Logitech USB Receiver: always reports core events
    [ 55.927] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
    [ 55.927] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 55.927] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 55.927] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 55.927] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 55.927] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 55.927] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 55.927] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 55.927] (--) evdev: Logitech USB Receiver: Found keys
    [ 55.927] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 55.927] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 55.927] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 55.927] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 55.927] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 55.927] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input2/event2"
    [ 55.927] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 11)
    [ 55.927] (**) Option "xkb_rules" "evdev"
    [ 55.927] (**) Option "xkb_model" "evdev"
    [ 55.927] (**) Option "xkb_layout" "se"
    [ 55.927] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 55.927] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 55.927] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 55.927] (II) config/udev: Adding input device USB 2.0 PC Camera (/dev/input/event10)
    [ 55.927] (**) USB 2.0 PC Camera: Applying InputClass "evdev keyboard catchall"
    [ 55.927] (**) USB 2.0 PC Camera: Applying InputClass "Keyboard Defaults"
    [ 55.927] (II) Using input driver 'evdev' for 'USB 2.0 PC Camera'
    [ 55.927] (**) USB 2.0 PC Camera: always reports core events
    [ 55.927] (**) evdev: USB 2.0 PC Camera: Device: "/dev/input/event10"
    [ 55.927] (--) evdev: USB 2.0 PC Camera: Vendor 0x1210 Product 0x25f4
    [ 55.927] (--) evdev: USB 2.0 PC Camera: Found keys
    [ 55.927] (II) evdev: USB 2.0 PC Camera: Configuring as keyboard
    [ 55.927] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input10/event10"
    [ 55.927] (II) XINPUT: Adding extended input device "USB 2.0 PC Camera" (type: KEYBOARD, id 12)
    [ 55.927] (**) Option "xkb_rules" "evdev"
    [ 55.927] (**) Option "xkb_model" "evdev"
    [ 55.927] (**) Option "xkb_layout" "se"
    [ 55.928] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event11)
    [ 55.928] (II) No input driver specified, ignoring this device.
    [ 55.928] (II) This device may have been added with another device file.
    [ 55.928] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event12)
    [ 55.928] (II) No input driver specified, ignoring this device.
    [ 55.928] (II) This device may have been added with another device file.
    [ 55.928] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 55.928] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 55.928] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 55.928] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 55.928] (**) AT Translated Set 2 keyboard: always reports core events
    [ 55.928] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 55.928] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 55.928] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 55.928] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 55.929] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 55.929] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 55.929] (**) Option "xkb_rules" "evdev"
    [ 55.929] (**) Option "xkb_model" "evdev"
    [ 55.929] (**) Option "xkb_layout" "se"
    [ 55.929] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 55.929] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 55.929] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 55.929] (II) LoadModule: "synaptics"
    [ 55.929] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 55.967] (II) Module synaptics: vendor="X.Org Foundation"
    [ 55.967] compiled for 1.12.1, module version = 1.6.1
    [ 55.967] Module class: X.Org XInput Driver
    [ 55.967] ABI class: X.Org XInput driver, version 16.0
    [ 55.967] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 55.967] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 55.967] (**) Option "Device" "/dev/input/event9"
    [ 55.967] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5672
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4910
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 55.968] (**) Option "TapButton1" "1"
    [ 55.968] (**) Option "TapButton2" "2"
    [ 55.968] (**) Option "TapButton3" "3"
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 55.968] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 55.968] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event9"
    [ 55.968] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 55.969] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 55.969] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 55.969] (II) No input driver specified, ignoring this device.
    [ 55.969] (II) This device may have been added with another device file.
    [ 55.970] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 55.970] (II) No input driver specified, ignoring this device.
    [ 55.970] (II) This device may have been added with another device file.
    From what I can tell it is something with the nvidia driver that doesn't play well with xorg.  Perhaps some kind of autodetection that takes long time to finish. Anyone got any ideas how to solve this?
    Last edited by Larsson (2012-06-13 18:59:43)

    Didn't see they where timestamps . Yes it seems that glx is one cause of the delay. I've tried some different xorg.conf, and it's always ligglx.so or  NV-GLX that slows it down. Any suggestions on how I can speed this up?
    ps. The computer is ok. Although the garddrive is a SATA 3.0Gb/s, 5400 RPM.  But I don't think this is the problem?

  • [SOLVED] Trouble building VMware modules

    Hello there,
    I have VMware Player installed, but since last kernel update from 2.6.32 to .33 all modules have to be rebuilt. The thing is that when I start the app I get a message about it not finding the kernel headers. I have kernel26-headers installed, and the headers are actually under /usr/src/2.6.33-ARCH/include, but vmware won't find them.
    Any ideas?
    Thanks!
    Last edited by Surgat_ (2010-04-19 20:48:57)

    Ok, VMware Player 3.0.1 actually finds the headers and builds its moudles, so now /etc/rc.d/vmware start works ok. But now vmplayer crashes without any errors when I open it. Launching it from the cli drops this output:
    $ vmplayer
    Logging to /tmp/vmware-quique/setup-12148.log
    filename: /lib/modules/2.6.33-ARCH/misc/vmmon.ko
    supported: external
    license: GPL v2
    description: VMware Virtual Machine Monitor.
    author: VMware, Inc.
    depends:
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    filename: /lib/modules/2.6.33-ARCH/misc/vmnet.ko
    supported: external
    license: GPL v2
    description: VMware Virtual Networking Driver.
    author: VMware, Inc.
    depends:
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    filename: /lib/modules/2.6.33-ARCH/misc/vmblock.ko
    supported: external
    version: 1.1.2.0
    license: GPL v2
    description: VMware Blocking File System
    author: VMware, Inc.
    srcversion: 400149ED038D22A87322D56
    depends:
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    parm: root:The directory the file system redirects to. (charp)
    filename: /lib/modules/2.6.33-ARCH/misc/vmci.ko
    supported: external
    license: GPL v2
    description: VMware Virtual Machine Communication Interface (VMCI).
    author: VMware, Inc.
    depends:
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    filename: /lib/modules/2.6.33-ARCH/misc/vsock.ko
    supported: external
    license: GPL v2
    version: 1.0.0.0
    description: VMware Virtual Socket Family
    author: VMware, Inc.
    srcversion: BC1943DCE52AE461DCC2D43
    depends: vmci
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    filename: /lib/modules/2.6.33-ARCH/misc/vmmon.ko
    supported: external
    license: GPL v2
    description: VMware Virtual Machine Monitor.
    author: VMware, Inc.
    depends:
    vermagic: 2.6.33-ARCH SMP preempt mod_unload 686
    And then the window just dissappears. Also:
    $ cat /tmp/vmware-quique/setup-12148.log
    abr 18 17:45:23.484: app-3077506752| Log for VMware Workstation pid=12148 version=7.0.1 build=build-227600 option=Release
    abr 18 17:45:23.484: app-3077506752| The process is 32-bit.
    abr 18 17:45:23.484: app-3077506752| Host codepage=UTF-8 encoding=UTF-8
    abr 18 17:45:23.484: app-3077506752| Logging to /tmp/vmware-quique/setup-12148.log
    abr 18 17:45:23.648: app-3077506752| modconf query interface initialized
    abr 18 17:45:23.648: app-3077506752| modconf library initialized
    So there are no errors in any logs. I am completely lost, any ideas?
    Thanks!

  • [SOLVED] Trouble building postler-git

    After fixing a few (common) issues I had with a vala dependency, I now get an error message saying
    zeitgeist is needed for Postler to show up in Synapse, the Unity dash or the Activity log.
    If you want to build without it, pass --disable-zeitgeist.
    whenever I attempt to install postler-git via yaourt.
    Yes, I have installed the zeitgeist package and still receive this message. I am unsure where to put "--disable-zeitgeist" in order to pass it, and I am unsure that I would want to, since being able to see things in the activity log seems like a good thing.
    I am still a bit new to the whole Linux thing, and I am sorry if the answer  I seek is self-evident or something. I would appreciate any responses though!
    Last edited by oalicein (2011-06-20 07:07:37)

    I have not done this, so this is general advice.
    You probably wont be able to do it from yaourt.   You will need to do it in accordance with this AUR article.
    Abridged version:
    Grab the tarbel from ABS
    unpack it
    change to the directory you unpacked
    edit PKGBUILD
    find this line: ./waf configure --prefix=/usr --disable-libindicate
    add the --disable-zeitgeist to that line.
    do a makepkg
    If success, install with sudo pacman -U
    edit: fixed makepkg command, added sudo to pacman command
    Last edited by ewaller (2011-06-18 04:00:13)

  • [SOLVED]Trouble installing xorg + gnome

    I'm currently running a core installation of Arch on my virtual box. I have Internet connection and Pacman works. I've installed xorg but when I type startx it brings me to a weird DE thats just 3 terminals. I tried installing gnome but I got a bunch of errors. Then I tried again and I get errors like :: Retrieving packages from core...
    error: failed retrieving file 'perl-.12.1-3-1686.pkg.tar.xz' from mirrorls.kernel.org  : Connection timed out
    etc...
    Then it says
    warning:  failed to retrieve some files from core
    error:  failed to commit transaction (Not Found)
    Errors occured, no packages were upgraded.
    It's really weird(and annoying). Can anybody offer some help?
    Last edited by breaksand30 (2011-01-15 17:39:04)

    Mr Green wrote:
    breaksand30 wrote:
    scarecrow wrote:
    Do you have something uncommented at your X startup file?
    cat ~/.xinitrc
    As for the Gnome thing, try again ( pacman -Sy gnome )
    cat: /home/archie/.xinitrc: No such file or directory
    Weird. When I type startx is starts some type of DE. Don't know why .xinitrc wouldn't be there.
    Once Xorg is installed you can test it by running startx the funny three windows you see is twm
    If you wish to install Gnome then use Arch wiki to guide you, add a login manager of your choice
    From the looks of your first post you need to make sure mirrors network and pacman are all set up too
    MrG
    I'm pretty sure mirrors are set up correctly. I commented out the first two(The mirrors.kernel.org).  And pacman can get other packages like sudo correctly.

  • [SOLVED] xorg-server build from abs fails

    Hi,
    ever since I installed the update to gcc-5.1.0 the building of xorg-server from abs fails:
    $ makepkg -s
    CCLD libXextdpmsstubs.la
    xvdisp.c: In function ‘XineramifyXv’:
    xvdisp.c:1783:37: error: array subscript is above array bounds [-Werror=array-bounds]
    if (MatchingAdaptors[k] && (MatchingAdaptors[k]->nPorts > j))
    ^
    xvdisp.c:1784:31: error: array subscript is above array bounds [-Werror=array-bounds]
    port->info[k].id = MatchingAdaptors[k]->base_id + j;
    ^
    xvdisp.c:1786:31: error: array subscript is above array bounds [-Werror=array-bounds]
    port->info[k].id = 0;
    ^
    cc1: some warnings being treated as errors
    Makefile:777: recipe for target 'xvdisp.lo' failed
    make[1]: *** [xvdisp.lo] Error 1
    make[1]: *** Waiting for unfinished jobs....
    make: *** [all-recursive] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    This happens for xorg-server-1.17.1-6 and up as well as for xorg-server-1.17.2-1 .
    $ gcc --version
    gcc (GCC) 5.1.0
    Copyright (C) 2015 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    I searched for a solution or a patch, but couldn't find anything.
    xorg-server-1.17.2 supposedly has build fixes with gcc-5.1, but obviously that didn't help much for me.
    Otherwise my arch installation is up-to-date.
    I'm building on x86-64 (Haswell) with
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    CXXFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    LDFLAGS="-Wl,-O2,--sort-common,--as-needed,-z,relro"
    MAKEFLAGS="-j16"
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    Has anyone else seen this or any idea how to fix it?
    Last edited by pgzh (2015-06-19 15:03:20)

    Using
    CFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    in makepkg.conf actually worked, I totally forgot about changing the optimization level.
    Since this is the first time for a very long time I've encountered a problem with -O3, do you think this should be reported as a bug for xorg-server?
    With gcc-4.9 building xorg-server with -O3 optimization level worked perfectly fine for me (I built 1.17.1 like that) and gcc-5.1 causes this culprit.
    Anyways, thank you very much for your help!

  • [solved/cannot be solved]Xorg-server and gnome-power-manager

    I was wondering if there is hope that someone will put patches to main tree of Xorg-server which are here: http://blogs.gnome.org/hughsie/2009/08/ … of-bodges/
    It should remove this weird blanking effect and time gap before screen is backlighted again. I didn't tested it, because it requires rebuild of xorg-server and I don't want to use git version, but guys there says that it's working.
    Last edited by megawebmaster (2010-02-08 22:24:26)

    OK, thanks for advice, I'll try building xorg-server with ABS.
    I've got another problem with automatic turn off screen - media players don't prevent turning screen off while they are playing film. Is there any possibility to fix it? Only way I've found is to turn off automatic screen backlight off after couple of minutes, but it's not how tigers want this to work

  • [SOLVED]xorg-server 1.14.4-1 - mouse wheel not responding while moving

    I notice a relapse of the bug (https://bugs.archlinux.org/task/29191 and https://bugs.freedesktop.org/show_bug.cgi?id=48167) since the xorg-server upgrade. Downgrade to 1.14.3-2 solves the problem. The problem is noticed in ioQuake3 engines.
    UPDATE:
    The problem was relative to the mouse brand and model since other mouses didn't have issues. After a few kernel upgrades the problem went away thus I'm marking this thread SOLVED.
    Last edited by rationalperseus (2014-01-03 19:13:41)

    I've just tested some of the games that had that bug and they all seem fine so I'm thinking it's a different bug, perhaps in ioQuake3.

  • [Solved] Compiling Xorg-server 1.6.3.901.

    Hello Toaday I wanted to build new xorg-server package with this PKGBUILD:
    5 pkgname=xorg-server
    6 pkgver=1.6.3.901
    7 pkgrel=1
    8 pkgdesc="X.Org X servers"
    9 arch=('i686' 'x86_64')
    10 license=('custom')
    11 url="http://xorg.freedesktop.org"
    12 depends=('libxfont>=1.4.0' 'openssl>=0.9.8k' 'libpciaccess>=0.10.8' 'libxv>=1.0.4' 'pixman>=0.16.0' 'xkeyboard-config>=1.6' 'xorg-serve
    13 makedepends=('glproto' 'libx11>=1.2.2' 'mesa>=7.5.1' 'xf86driproto>=2.1.0' 'xtrans>=1.2.4' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'ren
    14 conflicts=('catalyst-utils<=9.2')
    15 options=('!libtool')
    16 provides=('x-server')
    17 groups=('xorg')
    18 install=xorg-server.install
    19 source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
    20 xorg-redhat-die-ugly-pattern-die-die-die.patch
    21 dpms-dont-reset-lastdeviceeventtime.patch
    22 dri2-dontcrash.patch
    23 xinerama.patch
    24 dga.patch
    25 xvfb-run
    26 xvfb-run.1)
    27 md5sums=('8d43c4cb43e6a10550e68fbbcad10e9d'
    28 '1a336eb22e27cbf443ec5a2ecddfa93c'
    29 '9ea2e9f5a7192da23c5c573545fe9836'
    30 '03cd32862fbfe5f493e108ee7205ade6'
    31 '060aaa85d64d26915783e9f6837a666c'
    32 'f426f93dfec972ba6f641a8e7d6a9256'
    33 '52fd3effd80d7bc6c1660d4ecf23d31c'
    34 '376c70308715cd2643f7bff936d9934b')
    35
    36 build() {
    37 cd "${srcdir}/${pkgname}-${pkgver}"
    38 # Get rid of the ugly pattern
    39 patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
    40
    41 # Build fixes for new protos
    42 patch -Np1 -i "${srcdir}/xinerama.patch" || return 1
    43 patch -Np1 -i "${srcdir}/dga.patch" || return 1
    44
    45 # Fixes from http://wiki.x.org/wiki/Server16Branch
    46 patch -Np1 -i "${srcdir}/dpms-dont-reset-lastdeviceeventtime.patch" || return 1
    47 patch -Np1 -i "${srcdir}/dri2-dontcrash.patch" || return 1
    48
    49 # Fix dbus config path
    50 sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    51
    52 ./configure --prefix=/usr \
    53 --disable-dri2 \
    54 --disable-ipv6 \
    55 --disable-dri \
    56 --disable-dmx \
    57 --disable-xvfb \
    58 --disable-xnest \
    59 --disable-composite \
    60 --disable-xcsecurity \
    61 --enable-xorg \
    62 --disable-xephyr \
    63 --disable-glx-tls \
    64 --disable-kdrive \
    65 --enable-install-setuid \
    66 --disable-config-hal \
    67 --enable-config-dbus \
    68 --disable-record \
    69 --disable-xfbdev \
    70 --disable-xfake \
    71 --disable-xsdl \
    72 --disable-static \
    73 --sysconfdir=/etc/X11 \
    74 --localstatedir=/var \
    75 --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/shar
    76 --with-xkb-path=/usr/share/X11/xkb \
    77 --with-xkb-output=/var/lib/xkb \
    78 --without-dri-driver || return 1
    79
    80 make || return 1
    81 make DESTDIR="${pkgdir}" install || return 1
    82
    83 install -m755 "${srcdir}/xvfb-run" "${pkgdir}/usr/bin/" || return 1
    84 install -m644 "${srcdir}/xvfb-run.1" "${pkgdir}/usr/share/man/man1/" || return 1
    85
    86 rm -rf "${pkgdir}/var/log" || return 1
    87
    88 install -m755 -d "${pkgdir}/etc/X11" || return 1
    89 install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    90
    91 # Needed for non-mesa drivers, libgl will restore it
    92 mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    93 "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    94
    95 install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    96 install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    And while compiling I got error:
    /home/user/abs/xorg-server/PKGBUILD: line 77: --with-xkb-path=/usr/share/X11/xkb: No such file or direcotry
    Last edited by SpeedVin (2009-09-06 14:00:23)

    Heh I missed some part of like like flamelab said , how I do that?
    Some time ago I created my own PKGBUILD for xorg-server and toady I want to update it becouse I see some difreces between my PKGBUILD and PKGBUILD from abs tree and I copy the difrrent line
    Thanks Perry3D and big thanks to flamelab.

Maybe you are looking for