Xorg-server 1.6.3.901-1 and nouveau on 7600 Go = crash

Hi !
I updated this morning and now that xorg-server and libdrm (maybe the culprit ?) are up to date X won't start with nouveau
It works if I go back to nvidia.
What should I do ? Who should I contact ?
Thanks Bye !

You're right Nephete but i didn't consider this post as a "help me compiling nouveau".
nv_accel_common.c: In function 'NVAccelInitContextSurfaces':
nv_accel_common.c:48: erreur: 'NV_10' undeclared (first use in this function)
nv_accel_common.c:48: erreur: (Each undeclared identifier is reported only once
nv_accel_common.c:48: erreur: for each function it appears in.)
make[2]: *** [nv_accel_common.lo] Erreur 1
make[2]: *** Attente des tâches non terminées....
mv -f .deps/nv_cursor.Tpo .deps/nv_cursor.Plo
make[2]: quittant le répertoire « /home/bruno/abs/xf86-video-nouveau/src/xf86-video-nouveau-20090612/src »
make[1]: *** [all-recursive] Erreur 1
make[1]: quittant le répertoire « /home/bruno/abs/xf86-video-nouveau/src/xf86-video-nouveau-20090612 »
make: *** [all] Erreur 2

Similar Messages

  • Kde 4.2 won't login after xorg-server-1.6.1.901-1 upgrade

    I upgraded my system this afternoon, but when the upgrade completed all my window decorations were gone and plasma as down.  I restarted kde from virtual console 1 and the login screen was brought up.  Now when i go to login i get stuck in an endless loop.  I type in my username and password, and then after a few seconds the login window reappears. 
    I checked /var/log/errors.log and there are a number of lines like this:
    kdm_greet[3623]: Cannot open default user face
    i then installed gdm which wouldn't log me in either, but gave an error along the lines of xclient doesn't exist
    this error occured after installing xorg-server-1.6.1.901-1
    any help would be appeciated as i can't use arch at all atm!

    sorry, i forgot to mention it.  I've tried both of those things and niether helped.  Same problem.  I also changed the permissions on the /tmp directory which removed another error message to the effect of: cannnot save user authorization,
    oh and just fyi, my disk is not full, there is at least 5gb free on that partition, so thats not what was causing that error.

  • [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.

  • Kdemod, xorg-server 1.7.1.901-1 = slow kickof, dvb broken... [solved]

    So the recent xorg update to 1.7.1.901-1 has caused some problems for me. The kickof menu in kde was extremly slow and dvbt stoped working, kaffeine not being able to tune to any channels anymore.
    Searching in the forum I found out that the kickof menu broke due to the xorg update. It turned out, downgrading xorg fixed kickof and dvbt.
    I described how to do that here
    http://bbs.archlinux.org/viewtopic.php?id=84294
    and there is also the wiki source. I hope this saves somebody some time :-)
    http://wiki.archlinux.org/index.php/Dow … ges#How-To

    But will kde be fixed anytime soon to handle the new xorg?  Or maybe kde is waiting for xorg to be fixed so that kde will still work .  It's annoying to have software components out of date.  Moreover  I hate having to waste brain cells to check if some package dependency will force xorg to be updated again.   After the recent upgrade  I first had no X at all.  I then had to reinstall the nvidia drivers,  but in the past I had used the nvidia shell script to do it because I wanted to try out their openCL drivers.
    For the life of me I couldn't figure out how to uninstall the proprietary drivers and it wouldn't let me install nvidia under pacman.  I had to delete every conflicting file by hand (sigh).  I finally got arch's nvidia to install,  but kde will not start at all for me.   On boot kde hangs after the first disk drive icon and then a mouse click will send the screen to black.
    So far the only solution offered is to downgrade xorg.  I'd prefer to run lxde for now until the wrinkles are worked out.  But even lxde has some odd windowing behavior now.  I use xmonad as my window manager and any window at the right edge of the screen has a defective scroll bar.  You'd think the xorg folks would have done some more testing with at the very least kde and gnome prior to release.

  • Xorg-server broken after upgrade to 1.6.3.901-1

    Hello,
    After upgrading to xorg-server 1.6.3.901-1 and rebooting the computer xorg-server respawned repeatedly very fast and I was unable to exit except for pressing the power button (I had runlevel 5 set in /etc/inittab). Then I set the runlevel to 3 in /etc/inittab (using a liveCD), logged in and typed startx. The terminal became black except for a grey cursor in the top left of the screen and I was unable to exit except for pressing the power button.
    The previous version of xorg-server is no longer in the pacman cache because I cleared it.
    Thanks.

    helpvampire wrote:
    Hi,
    I fixed this by using the xf86-video-nv driver instead of xf86-video-nouveau. However it has very poor performance.
    Why you don't use NVIDIA drivers?It's very nice from your side to use open source dirver but you have any problem's with NVIDIA drivers?
    Here you have topic with same issue and drivers:
    http://bbs.archlinux.org/viewtopic.php?id=79512
    Last edited by SpeedVin (2009-09-08 18:00:08)

  • Xorg-server-1.7.1-1 and xorg-video-ati

    Hiya, I've had problems with the latest version of xorg-server on a Radeon Mobility M6 (IBM Thinkpad X31). After the upgrade input into SLiM was totally broken and the screen was completely drained of colour and very dim. I tried enabling KMS (I had it disabled to avoid rendering problems with Mesa) and the screen looked slightly different but no improvement.
    I've fixed the problem by rolling back to xorg-server-1.6.3.901, xf86-video-vesa-2.2.0, xf86-video-ati-6.12.4 and xf86-input-evdev-2.2.5.

    MadTux wrote:Did anyone of you guys actually try to disable KMS according to the Wiki? I can't see this from your posts. My ATI card doesn't like KMS and I had to disable it. After that, everything works like expected with xorg-server 1.7.1 and xf86-video-ati.
    How check is KMS disabled ?
    in kernel option i have:
    append = "init=/linuxrc real_root=/dev/hda3 video=vesafb:mtrr,ywrap,1024x768-16@60 CONSOLE=/dev/tty1 resume2=file:/dev/hda3:0x44048"
    $ lspci | grep VGA
    01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV250 [Mobility FireGL 9000] (rev 01)

  • [solved]xorg server 1.6 and dbus (???)

    hello everyone
    first of all, i'm fairly new to arch, however, i do have experience with linux. i've been using gentoo for about 4 years and a few other distributions before that.
    secondly, i'd like to apologize  if this is the wrong place to post this, but i couldn't really find a place where it'd fit in.
    today i've installed arch on my macbook (one of the late 2008 models) and so far, quite a few things work. there is, however, one thing i noticed as soon as i started dbus, keyboard events in xorg got repeated. to be more precise, if i hit the letter a, it would print an a on key press and another one on key release. i have xorg server 1.6.3.901-1.
    did anyone else have a similar problem and/or knows how this can be fixed?
    thanks in advance for anything that might help
    edit: quite oddly, a reboot (which did not help previously) fixed it this time...
    Last edited by MrDStar (2009-10-25 20:44:42)

    Thanks!
    xf86-video-intel
    xf86-input-synaptics
    from testing is the solution - more or less .
    testing disabled again:
    # pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    kdemod-core is up to date
    kdemod-extragear is up to date
    archlinuxfr is up to date
    :: Starting full system upgrade...
    warning: intel-dri: local (7.3-1) is newer than extra (7.2-2)
    warning: libgl: local (7.3-1) is newer than extra (7.2-1)
    warning: xf86-input-evdev: local (2.2.0-1) is newer than extra (2.1.2-1)
    warning: xf86-input-synaptics: local (1.1.0-1) is newer than extra (1.0.0-1)
    warning: xorg-server: local (1.6.0-1) is newer than extra (1.5.3-4)
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: intel-dri: requires libdrm>=2.4.4
    :: libgl: requires libdrm>=2.4.5
    Any ideas?
    Last edited by Llama (2009-03-31 19:15:25)

  • Nvidia/nvidia-utils 190.42-1 with xorg-server 1.7.1-1 segfault

    After today's upgrade, X fails to start with segmentation fault.  When I downgraded nvidia/nvidia-utils to 185.18.36-2, xorg-server to 1.6.3.901-1 and related xf86-input-*, it starts to work.  Interestingly, neither combination of nvidia/nvidia-utils to 185.18.36-2 with xorg-server 1.7.1-1, nor nvidia/nvidia-utils 190.42-1 with xorg-server to 1.6.3.901-1 works.  After downgrading and playing it a little bit, I lost my original crash logs.
    I guess I should post the problem here to see if anyone is seeing the same problem, before going back upgrading and hitting the bug again.  Of course, if you are interested in my Xorg.0.log, I can produce it again.
    And by the way, I'm using arch64 on a lenovo t61p with nVidia Quadro FX 570M.  I guess the problem is new, and I don't have any luck with google, yet.

    I just encountered this error with nvidia-173xx, I guess the only solution is to manually search for and install the
    older xorg packages? And wait for nvidia to possibly* add support for the new xorg?
    X.Org X Server 1.7.1
    Release Date: 2009-10-23
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.31-ARCH i686
    Current Operating System: Linux Thorin 2.6.31-ARCH #1 SMP PREEMPT Fri Oct 23 11:12:58 CEST 2009 i686
    Kernel command line: root=/dev/disk/by-uuid/3902f419-5299-4a4e-8cc7-f31d3d7702a5 ro vga=773
    Build Date: 25 October 2009 08:20:56PM
    Current version of pixman: 0.16.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 1 13:59:11 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (**) Option "DontZap" "false"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) Loader magic: 0x81e5f40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 8
    (--) PCI:*(0:1:0:0) 10de:00c8:1558:0900 nVidia Corporation NV41.8 [GeForce Go 6800] rev 162, Mem @ 0xb2000000/16777216, 0xc0000000/268435456, 0xb1000000/16777216
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (WW) Warning, couldn't open module freetype
    (II) UnloadModule: "freetype"
    (EE) Failed to load module "freetype" (module does not exist, 0)
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 173.14.20 Thu Jun 25 19:49:59 PDT 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.1, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    dlopen: /usr/lib/xorg/modules/drivers/nvidia_drv.so: undefined symbol: resVgaShared
    (EE) Failed to load /usr/lib/xorg/modules/drivers/nvidia_drv.so
    (II) UnloadModule: "nvidia"
    (EE) Failed to load module "nvidia" (loader failed, 7)
    (EE) No drivers available.
    Fatal server error:
    no screens found
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    Edit: found my packages at http://www.schlunix.org/archlinux/extra/os/i686/ and did a downgrade,
    anubis@Thorin ~/ $ sudo pacman -U /var/cache/pacman/pkg/xorg-server-1.6.3.901-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xorg-server-utils-7.4-7-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-evdev-2.2.5-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-keyboard-1.3.2-2-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-mouse-1.4.0-2-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-input-synaptics-1.1.3-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-video-nv-2.1.14-1-i686.pkg.tar.gz /var/cache/pacman/pkg/xf86-video-vesa-2.2.0-1-i686.pkg.tar.gz
    Last edited by 1LordAnubis (2009-11-01 23:07:34)

  • [SOLVED, PARTIALLY] Xorg 1.5 leaves me with freezed and colored screen

    I was using xorg-server 1.4 with xf86-video-i810 and xf86-input-keyboard 1.3.1 and it was fine. Today, I upgrade my system and xf86-input-keyboard was upgrade to 1.3.2. With this upgrade, I was able to log into X but my keyboard was unusable. And since I do not have the old package of xf86-input-keyboard (version 1.3.1) in my hard disk, I am unable to go back.
    So, I tried to upgrade my system completely including xorg-server 1.4 to 1.5 and xf86-video-i810 to xf86-video-intel. Then I tried starting up X and it gives a colorful screen with vertical lines.
    Searched forum a bit and came to know that I can remove my xorg.conf since new xorg detects things on its own. Hence, I deleted xorg.conf and enabled hal in rc.conf. But this also gave me the same result.
    Thirdly, I tried removing xbindkeys since there was some mention that it creates problem when starting up with X, but to no avail.
    Finally, I tried using "hwd -u" and "hwd -xa" to get an xorg.conf as it was mentioned in some post. it too did not work.
    Can someone help me get out of this mess. I'm not able to post links to other posts or my xorg log since I'm on links to browse net and using it first time.
    Waiting for your help.[
    Last edited by ravisghosh (2009-02-27 00:23:15)

    After trying lot of things and not being able to get xorg-server 1.5 work with my system, the only way remaining was to build xf86-input-keyboard 1.3.1 using abs. Here is how I did it (will help those who does not know how to build using abs just as I did not know).
    copy the following files in a folder.
    /var/abs/extra/xf86-input-keyboard/PKGBUILD
    /var/abs/extra/xf86-input-keyboard/new-server.patch
    open PKGBUILD file using some editor, e.g. nano. and change the following lines to look like this
    pkgver=1.3.1
    pkgrel=1
    Note, the version and release has to be changed.
    Now run this command
    makepkg
    This will download a file and after a while you will get the following error:
    validating source files with md5sums
    xf86-input-keyboard-1.3.1.tar.gz FAILED
    Now run the following command
    md5sum -t xf86-input-keyboard-1.3.1.tar.gz
    THis will give a long series of letters and numbers. Note that down and again open PKGBUILD file. Go to the end of the file and you will find 2 similar series of numbers and letters. Replace the first series with the number you have noted down. Save the file and exit.
    Now again run
    makepkg
    This time, the process will continue and will not fail. You will get the installation file in the same directory, named like xf86-input-keyboard-1.3.1-1-i686.pkg.tar.gz.
    now, install this file
    pacman -U xf86-input-keyboard-1.3.1-1-i686.pkg.tar.gz
    Do the same for other files, i.e., xorg-server 1.4 and xf86-video-i810-1.7.4, etc., if you happen to not have them in your hard disk.

  • Xorg-server-1.4-6, help me isolate before filing bug

    Background: Prescott proc (3.2 GHz dual core), 4 gigs of non-EDAC RAM (memtest86'd), NVidia 7900 GTO (using proprietary driver version 100.14.19), no PCI bus contention/shared IRQs, keys/mouse on PS/2, running Archlinux i686 (everything but testing), generally under a recent (2.6.2x) stable kernel with RT patches (for audio production), problem also reproduced using current Arch stock kernel (2.6.23.8-1, IIRC) and a "vanilla" 2.6.23.9 (pretty much everything built as mods w/ cpio image for initrd).  Don't often enough run a WM to know if the following behavior affects 2d as well as 3d.  Never had a single problem under conditions/running app which now produce error.  Problem discovered while playing Nexuiz (fullscreen, opengl, "nexuiz-glx" from nexuiz 2.3-1 in community repo) after move to xorg-server-1.4-6 (same night it hit extra).
    Problem: Nexuiz response to keys/mouse input stutters/delays/fails outright/completely locks up keyboard when CPU needed by game (bots on screen, loading map, switching weapons, calculating for high number of projectiles) - using mousewheel to rapidly cycle through weapons seems to cause worst freezes, have yet to change binds for mousewheel up/down events to confirm the problem is rapid weapon switching and not mousewheel events themselves.  Confirmed with top that X is chewing 99% of CPU cycles most/all of the time it is running.  Frames per second unaffected (usually around 750 with dynamic lights/shadows and bumpmapping disabled).
    Help needed: How should I proceed to test this?  I'm not seeing any errors in X's log, nor is Nexuiz complaining, nothing in kernel ring buffer (from any of the kernels I've tried) to indicate a prob.

    Rolled patch referenced from http://bugs.archlinux.org/task/8527 along with patch brebs referenced above into local PKGBUILD (didn't change anything else from default PKGBUILD except to include these patches)  built (checked patched target files beforehand to make sure patches took), installed.
    Running it now, direct rendering working with NVidia binary blob, gl looks good.
    Ran Nexuiz a bunch, keyboard input seems better - for all I know placebo effect (and not sure how to evaluate that objectively).  Mouse wheel input is still being registered/used improperly by xorg-server - which I was certain would be the case.  I've skimmed over some of Xorg's outstanding bugs mentioning mouse wheel, and though nothing in particular stands out as a good match for the behavior, it does seem that some extraneous, wrong or otherwise repeated events are being registered/passed on by the xorg-server, which seems to quickly fill and f up its own buffer.
    Now Nexuiz (this version, this build) has never exhibited any of this behavior with this kernel or any recent, stable kernel.  Running it in windowed mode so I can keep an eye on top, it doesn't appear to be pushing the CPU at all, stays around 50% except for moments of serious work, and during mousewheel events doesn't appear to grab any more CPU than it needs to change a weapon or fire a weapon (did change mousewheel event binds to verify it wasn't weapon changing causing the input lag, even used a keyboard bind toggle for weapon changing to throw a ton of those events at the game at once to see how it behaved...it was fine).
    Pertinent mouse bit out of xorg conf being used:
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    ...tried ExplorerPS/2 (which is how it is auto-detected) and IMPS/2 explicity, same results.  Mouse being used is an MS Wheel Mouse Optical on PS/2, both protocols have always worked well enough.
    How do I proceed from here to figure out what's going on...or do I just take my results thus-far and dump them into a Xorg bug report?
    Last Xorg.0.log from messing with Nexuiz:
    _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
    _XSERVTransOpen: transport open failed for inet6/rig:0
    _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
    X.Org X Server 1.4.0
    Release Date: 5 September 2007
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.23.9-rt12-dp01 i686
    Current Operating System: Linux rig 2.6.23.9-rt12-dp01 #1 SMP PREEMPT RT Sun Dec 2 01:23:16 PST 2007 i686
    Build Date: 07 December 2007 05:33:44AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 7 06:17:45 2007
    (++) Using config file: "/etc/X11/nex.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/lib/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81cf500
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
    (--) using VT number 4
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,29c0 card 1458,5000 rev 02 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,29c1 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1c:0: chip 8086,2940 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1c:3: chip 8086,2946 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1c:4: chip 8086,2948 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 92 class 06,04,01 hdr 01
    (II) PCI: 00:1f:0: chip 8086,2916 card 1458,5001 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:2: chip 8086,2922 card 1458,b005 rev 02 class 01,06,01 hdr 00
    (II) PCI: 00:1f:3: chip 8086,2930 card 1458,5001 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 01:00:0: chip 10de,0291 card 3842,c564 rev a1 class 03,00,00 hdr 00
    (II) PCI: 05:00:0: chip 9005,0080 card 9005,62a0 rev 02 class 01,00,00 hdr 00
    (II) PCI: 05:01:0: chip 1186,1300 card 1186,1301 rev 10 class 02,00,00 hdr 00
    (II) PCI: 05:02:0: chip 1102,0004 card 1102,2002 rev 04 class 04,01,00 hdr 80
    (II) PCI: 05:02:1: chip 1102,7003 card 1102,0040 rev 04 class 09,80,00 hdr 80
    (II) PCI: 05:02:2: chip 1102,4001 card 1102,0010 rev 04 class 0c,00,10 hdr 80
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xf4000000 - 0xf6ffffff (0x3000000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:28:0), (0,2,2), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x00009000 - 0x00009fff (0x1000) IX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:28:3), (0,3,3), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x0000b000 - 0x0000bfff (0x1000) IX[b]
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xfb000000 - 0xfb0fffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 4: bridge is at (0:28:4), (0,4,4), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 4 I/O range:
    [0] -1 0 0x0000c000 - 0x0000cfff (0x1000) IX[b]
    (II) Bus 4 non-prefetchable memory range:
    [0] -1 0 0xf7000000 - 0xf8ffffff (0x2000000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 5: bridge is at (0:30:0), (0,5,5), BCTRL: 0x0000 (VGA_EN is cleared)
    (II) Bus 5 I/O range:
    [0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[b]
    (II) Bus 5 non-prefetchable memory range:
    [0] -1 0 0xf9000000 - 0xfaffffff (0x2000000) MX[b]
    (II) Bus 5 prefetchable memory range:
    [0] -1 0 0xfb200000 - 0xfb2fffff (0x100000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:0:0) nVidia Corporation G71 [GeForce 7900 GT/GTO] rev 161, Mem @ 0xf4000000/24, 0xe0000000/28, 0xf5000000/24, I/O @ 0xa000/7
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
    [0] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [1] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [2] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [3] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [4] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [5] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [6] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [7] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [8] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [9] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [10] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [11] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [12] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [13] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [14] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [15] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [16] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [17] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [18] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    (II) Inactive PCI resource ranges:
    [0] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [1] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [2] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [3] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [4] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [5] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [6] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [7] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [8] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [9] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [10] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [11] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [12] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [13] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [14] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [15] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [16] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [17] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [18] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [5] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [6] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [7] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [8] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [9] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [10] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [16] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [17] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [18] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [19] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [20] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [21] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [22] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [23] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [24] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    [25] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded by default.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded by default.
    (II) "type1" will be loaded by default.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) NVIDIA GLX Module 100.14.19 Wed Sep 12 14:48:02 PDT 2007
    (II) Loading extension GLX
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.2
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) NVIDIA dlloader X Driver 100.14.19 Wed Sep 12 14:14:20 PDT 2007
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01:00:0
    (--) Assigning device section with no busID to primary device
    (--) Chipset NVIDIA GPU found
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="NVIDIA Corporation"
    compiled for 7.1.99.2, module version = 1.0.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [5] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [6] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [7] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [8] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [9] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [10] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [16] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [17] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [18] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [19] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [20] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [21] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [22] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [23] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [24] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    [25] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [5] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [6] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [7] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [8] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [9] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [10] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [19] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [20] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [21] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [22] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [23] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [24] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [25] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [26] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [27] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    [28] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [29] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [30] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "NoFlip" "True"
    (**) NVIDIA(0): Option "NoLogo" "True"
    (**) NVIDIA(0): OpenGL flipping disabled
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce 7900 GT/GTO (G71) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 262144 kBytes
    (--) NVIDIA(0): VideoBIOS: 05.71.22.14.24
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 7900 GT/GTO at
    (--) NVIDIA(0): PCI:1:0:0:
    (--) NVIDIA(0): ViewSonic A91f+ (CRT-0)
    (--) NVIDIA(0): ViewSonic A91f+ (CRT-0): 400.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
    (--) NVIDIA(0): DPI set to (72, 72); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b]
    [1] 0 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    [2] 0 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b]
    [3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [7] -1 0 0xfa000000 - 0xfa003fff (0x4000) MX[b]
    [8] -1 0 0xfa005000 - 0xfa0057ff (0x800) MX[b]
    [9] -1 0 0xfa004000 - 0xfa0040ff (0x100) MX[b]
    [10] -1 0 0xfa006000 - 0xfa006fff (0x1000) MX[b]
    [11] -1 0 0xfb101000 - 0xfb1010ff (0x100) MX[b]
    [12] -1 0 0xfb100000 - 0xfb1007ff (0x800) MX[b]
    [13] -1 0 0xf5000000 - 0xf5ffffff (0x1000000) MX[b](B)
    [14] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [15] -1 0 0xf4000000 - 0xf4ffffff (0x1000000) MX[b](B)
    [16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [19] 0 0 0x0000a000 - 0x0000a07f (0x80) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [22] -1 0 0x0000d300 - 0x0000d307 (0x8) IX[b]
    [23] -1 0 0x0000d200 - 0x0000d23f (0x40) IX[b]
    [24] -1 0 0x0000d100 - 0x0000d1ff (0x100) IX[b]
    [25] -1 0 0x00000500 - 0x0000051f (0x20) IX[b]
    [26] -1 0 0x0000e700 - 0x0000e71f (0x20) IX[b]
    [27] -1 0 0x0000e600 - 0x0000e603 (0x4) IX[b]
    [28] -1 0 0x0000e500 - 0x0000e507 (0x8) IX[b]
    [29] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[b]
    [30] -1 0 0x0000e300 - 0x0000e307 (0x8) IX[b]
    [31] -1 0 0x0000a000 - 0x0000a07f (0x80) IX[b](B)
    [32] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [33] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [34] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "1024x768"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (**) Option "Protocol" "auto"
    (**) Mouse0: Device: "/dev/psaux"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons" "no"
    (**) Mouse0: ZAxisMapping: buttons 4 and 5
    (**) Mouse0: Buttons: 9
    (**) Mouse0: Sensitivity: 1
    (II) evaluating device (Mouse0)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) NVIDIA(0): Setting mode "1024x768"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    FreeFontPath: FPE "/usr/share/fonts/misc" refcount is 2, should be 1; fixing.
    Last edited by depierce (2007-12-07 16:12:24)

  • Radeon kms, xrandr and xorg-server 1.7

    I upgraded to xorg-server 1.7.2 the other day and now I've been getting immediate segfaults every time I try to use xrandr. All I'm doing is running:
    xrandr --output VGA-0 --left-of DVI-0
    which used to work perfectly with 1.6.3.901. It still does because I downgraded the xserver and all of my xf86 drivers.
    Do I need to start typing my xrandr commands in a different way? Is this happening to anyone else? I'm using an r300 card with kernel 2.6.31.6 and modesetting enabled. My xorg.conf is below.
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Touchpad0" "AlwaysCore"
    EndSection
    Section "ServerFlags"
    Option "AllowEmptyInput" "false"
    Option "AutoAddDevices" "false"
    Option "DontZap" "false"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/encodings"
    FontPath "/usr/share/fonts/util"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "record"
    Load "extmod"
    Load "dbe"
    Load "dri"
    Load "dri2"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad0"
    Driver "evdev"
    Option "Device" "/dev/input/event7"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "evdev"
    Option "Device" "/dev/input/event8"
    EndSection
    Section "Monitor"
    #DisplaySize 360 290 # mm
    Identifier "Monitor0"
    VendorName "NEC"
    ModelName "LCD1880SX"
    HorizSync 31.0 - 82.0
    VertRefresh 50.0 - 85.0
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "DDCMode" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RV505 [Radeon X1550 Series]"
    BusID "PCI:9:0:0"
    Option "AccelMethod" "EXA"
    Option "SWcursor" "true"
    Option "EnablePageFlip" "true"
    Option "RenderAccel" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "true"
    EndSection

    double posting a useless post wont' get you very far.  please keep the discussion here: http://bbs.archlinux.org/viewtopic.php? … 32#p641932 and follow JGC's advice therein.

  • Frozen screen with xorg-server 1.16 and ati driver

    Hi,
    after upgrading xorg-server to 1.16 (yes, I've read the news), the screen is somehow frozen: I can move the mouse but when I e.g. want to open a gui/window, nothing happens. Only switching from tty1 to another tty and back to tty1 updates the screen.
    I'm using driver. xf86-video-ati on a Mobility Radeon HD 3650.
    .local/share/xorg/Xorg.0.log:
    [ 57.275]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 57.275] X Protocol Version 11, Revision 0
    [ 57.275] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 57.275] Current Operating System: Linux bra 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    [ 57.275] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 initrd=../initramfs-linux.img
    [ 57.275] Build Date: 31 July 2014 11:53:19AM
    [ 57.275]
    [ 57.275] Current version of pixman: 0.32.6
    [ 57.275] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 57.275] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 57.275] (==) Log file: "/home/hel/.local/share/xorg/Xorg.0.log", Time: Sat Aug 30 19:43:24 2014
    [ 57.282] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 57.282] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 57.295] (==) No Layout section. Using the first Screen section.
    [ 57.295] (==) No screen section available. Using defaults.
    [ 57.295] (**) |-->Screen "Default Screen Section" (0)
    [ 57.295] (**) | |-->Monitor "<default monitor>"
    [ 57.297] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 57.297] (**) | |-->Device "My Graphics Card"
    [ 57.297] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 57.297] (==) Automatically adding devices
    [ 57.297] (==) Automatically enabling devices
    [ 57.297] (==) Automatically adding GPU devices
    [ 57.360] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 57.360] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 57.361] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 57.361] Entry deleted from font path.
    [ 57.361] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 57.361] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 57.361] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 57.361] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 57.362] (II) Loader magic: 0x818d80
    [ 57.362] (II) Module ABI versions:
    [ 57.362] X.Org ANSI C Emulation: 0.4
    [ 57.362] X.Org Video Driver: 18.0
    [ 57.362] X.Org XInput driver : 21.0
    [ 57.362] X.Org Server Extension : 8.0
    [ 57.459] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 57.459] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 57.504] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 57.506] (--) PCI:*(0:1:0:0) 1002:9591:17aa:2117 rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 57.506] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 57.506] (II) LoadModule: "glx"
    [ 57.509] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 57.608] (II) Module glx: vendor="X.Org Foundation"
    [ 57.608] compiled for 1.16.0, module version = 1.0.0
    [ 57.608] ABI class: X.Org Server Extension, version 8.0
    [ 57.608] (==) AIGLX enabled
    [ 57.608] (==) Matched ati as autoconfigured driver 0
    [ 57.608] (==) Matched ati as autoconfigured driver 1
    [ 57.608] (==) Matched modesetting as autoconfigured driver 2
    [ 57.608] (==) Matched fbdev as autoconfigured driver 3
    [ 57.608] (==) Matched vesa as autoconfigured driver 4
    [ 57.608] (==) Assigned the driver to the xf86ConfigLayout
    [ 57.608] (II) LoadModule: "ati"
    [ 57.608] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 57.612] (II) Module ati: vendor="X.Org Foundation"
    [ 57.612] compiled for 1.16.0, module version = 7.4.0
    [ 57.612] Module class: X.Org Video Driver
    [ 57.612] ABI class: X.Org Video Driver, version 18.0
    [ 57.612] (II) LoadModule: "radeon"
    [ 57.612] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 57.626] (II) Module radeon: vendor="X.Org Foundation"
    [ 57.626] compiled for 1.16.0, module version = 7.4.0
    [ 57.626] Module class: X.Org Video Driver
    [ 57.626] ABI class: X.Org Video Driver, version 18.0
    [ 57.626] (II) LoadModule: "modesetting"
    [ 57.627] (WW) Warning, couldn't open module modesetting
    [ 57.627] (II) UnloadModule: "modesetting"
    [ 57.627] (II) Unloading modesetting
    [ 57.627] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "fbdev"
    [ 57.627] (WW) Warning, couldn't open module fbdev
    [ 57.627] (II) UnloadModule: "fbdev"
    [ 57.627] (II) Unloading fbdev
    [ 57.627] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 57.627] (II) LoadModule: "vesa"
    [ 57.627] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 57.632] (II) Module vesa: vendor="X.Org Foundation"
    [ 57.632] compiled for 1.16.0, module version = 2.3.2
    [ 57.632] Module class: X.Org Video Driver
    [ 57.632] ABI class: X.Org Video Driver, version 18.0
    [ 57.632] (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 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 FireMV 2400 PCI,
    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, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, 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 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 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 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, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 57.636] (II) VESA: driver for VESA chipsets: vesa
    [ 57.636] (++) using VT number 1
    [ 57.637] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 57.637] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 57.642] (II) [KMS] Kernel modesetting enabled.
    [ 57.642] (WW) Falling back to old probe method for vesa
    [ 57.642] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 57.642] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 57.642] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 57.642] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 57.642] (==) RADEON(0): Default visual is TrueColor
    [ 57.642] (**) RADEON(0): Option "EXAVSync" "on"
    [ 57.642] (**) RADEON(0): Option "EXAPixmaps" "on"
    [ 57.642] (==) RADEON(0): RGB weight 888
    [ 57.642] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 57.642] (--) RADEON(0): Chipset: "ATI Mobility Radeon HD 3650" (ChipID = 0x9591)
    [ 57.642] (II) Loading sub module "dri2"
    [ 57.642] (II) LoadModule: "dri2"
    [ 57.642] (II) Module "dri2" already built-in
    [ 57.642] (II) Loading sub module "exa"
    [ 57.642] (II) LoadModule: "exa"
    [ 57.642] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 57.653] (II) Module exa: vendor="X.Org Foundation"
    [ 57.653] compiled for 1.16.0, module version = 2.6.0
    [ 57.653] ABI class: X.Org Video Driver, version 18.0
    [ 57.653] (II) RADEON(0): KMS Color Tiling: enabled
    [ 57.653] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 57.653] (II) RADEON(0): KMS Pageflipping: enabled
    [ 57.653] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 57.683] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 57.683] (II) RADEON(0): Output LVDS has no monitor section
    [ 57.696] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 57.717] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 57.747] (II) RADEON(0): EDID for output DVI-0
    [ 57.747] (II) RADEON(0): Manufacturer: SAM Model: 3f0 Serial#: 1413755442
    [ 57.747] (II) RADEON(0): Year: 2008 Week: 4
    [ 57.747] (II) RADEON(0): EDID Version: 1.3
    [ 57.747] (II) RADEON(0): Digital Display Input
    [ 57.747] (II) RADEON(0): Max Image Size [cm]: horiz.: 47 vert.: 30
    [ 57.747] (II) RADEON(0): Gamma: 2.20
    [ 57.747] (II) RADEON(0): DPMS capabilities: Off
    [ 57.747] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.747] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.747] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 57.747] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 57.747] (II) RADEON(0): Supported established timings:
    [ 57.747] (II) RADEON(0): 720x400@70Hz
    [ 57.747] (II) RADEON(0): 640x480@60Hz
    [ 57.747] (II) RADEON(0): 640x480@67Hz
    [ 57.747] (II) RADEON(0): 640x480@72Hz
    [ 57.747] (II) RADEON(0): 640x480@75Hz
    [ 57.747] (II) RADEON(0): 800x600@56Hz
    [ 57.747] (II) RADEON(0): 800x600@60Hz
    [ 57.747] (II) RADEON(0): 800x600@72Hz
    [ 57.747] (II) RADEON(0): 800x600@75Hz
    [ 57.747] (II) RADEON(0): 832x624@75Hz
    [ 57.747] (II) RADEON(0): 1024x768@60Hz
    [ 57.748] (II) RADEON(0): 1024x768@70Hz
    [ 57.748] (II) RADEON(0): 1024x768@75Hz
    [ 57.748] (II) RADEON(0): 1280x1024@75Hz
    [ 57.748] (II) RADEON(0): 1152x864@75Hz
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported standard timings:
    [ 57.748] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 57.748] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 57.748] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 57.748] (II) RADEON(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 146.2 MHz Image Size: 433 x 271 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
    [ 57.748] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 155 MHz
    [ 57.748] (II) RADEON(0): Monitor name: SyncMaster
    [ 57.748] (II) RADEON(0): Serial No: H1AK500000
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff004c2df00332324454
    [ 57.748] (II) RADEON(0): 04120103802f1e782aee91a3544c9926
    [ 57.748] (II) RADEON(0): 0f5054bfef80b30081808140714f0101
    [ 57.748] (II) RADEON(0): 01010101010121399030621a274068b0
    [ 57.748] (II) RADEON(0): 3600b10f1100001c000000fd00384b1e
    [ 57.748] (II) RADEON(0): 510f000a202020202020000000fc0053
    [ 57.748] (II) RADEON(0): 796e634d61737465720a2020000000ff
    [ 57.748] (II) RADEON(0): 004831414b3530303030300a202000b4
    [ 57.748] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.748] (II) RADEON(0): EDID for output LVDS
    [ 57.748] (II) RADEON(0): Manufacturer: IBM Model: 2887 Serial#: 0
    [ 57.748] (II) RADEON(0): Year: 2005 Week: 0
    [ 57.748] (II) RADEON(0): EDID Version: 1.3
    [ 57.748] (II) RADEON(0): Digital Display Input
    [ 57.748] (II) RADEON(0): Max Image Size [cm]: horiz.: 33 vert.: 21
    [ 57.748] (II) RADEON(0): Gamma: 2.20
    [ 57.748] (II) RADEON(0): No DPMS capabilities specified
    [ 57.748] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 57.748] (II) RADEON(0): First detailed timing is preferred mode
    [ 57.748] (II) RADEON(0): redX: 0.596 redY: 0.347 greenX: 0.335 greenY: 0.543
    [ 57.748] (II) RADEON(0): blueX: 0.158 blueY: 0.143 whiteX: 0.313 whiteY: 0.329
    [ 57.748] (II) RADEON(0): Manufacturer's mask: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 120.6 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Supported detailed timing:
    [ 57.748] (II) RADEON(0): clock: 100.5 MHz Image Size: 331 x 207 mm
    [ 57.748] (II) RADEON(0): h_active: 1680 h_sync: 1712 h_sync_end 1760 h_blank_end 1888 h_border: 0
    [ 57.748] (II) RADEON(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1065 v_border: 0
    [ 57.748] (II) RADEON(0): Unknown vendor-specific block f
    [ 57.748] (II) RADEON(0): LP154W02-TL06
    [ 57.748] (II) RADEON(0): EDID (in hex):
    [ 57.748] (II) RADEON(0): 00ffffffffffff00244d872800000000
    [ 57.748] (II) RADEON(0): 000f0103802115780abca59858558b28
    [ 57.748] (II) RADEON(0): 24505400000001010101010101010101
    [ 57.748] (II) RADEON(0): 0101010101011c2f90d0601a0f402030
    [ 57.748] (II) RADEON(0): 13004bcf10000019452790d0601a0f40
    [ 57.748] (II) RADEON(0): 203013004bcf100000190000000f00b3
    [ 57.748] (II) RADEON(0): 0a32b30a28140100320c0000000000fe
    [ 57.748] (II) RADEON(0): 004c503135345730322d544c303600bf
    [ 57.748] (II) RADEON(0): Printing probed modes for output LVDS
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x60.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 57.748] (II) RADEON(0): Modeline "1680x1050"x50.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 57.748] (II) RADEON(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x1024"x59.9 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x960"x59.9 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync (59.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 57.748] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 57.748] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 57.748] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 57.749] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 57.749] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 57.760] (II) RADEON(0): EDID for output DisplayPort-0
    [ 57.780] (II) RADEON(0): EDID for output VGA-0
    [ 57.780] (II) RADEON(0): Output DVI-0 connected
    [ 57.780] (II) RADEON(0): Output LVDS connected
    [ 57.780] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 57.780] (II) RADEON(0): Output VGA-0 disconnected
    [ 57.780] (II) RADEON(0): Using exact sizes for initial modes
    [ 57.780] (II) RADEON(0): Output DVI-0 using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Output LVDS using initial mode 1680x1050
    [ 57.780] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 57.780] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f8ca000
    [ 57.780] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 57.780] (==) RADEON(0): DPI set to (96, 96)
    [ 57.780] (II) Loading sub module "fb"
    [ 57.780] (II) LoadModule: "fb"
    [ 57.780] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 57.815] (II) Module fb: vendor="X.Org Foundation"
    [ 57.815] compiled for 1.16.0, module version = 1.0.0
    [ 57.815] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 57.815] (II) Loading sub module "ramdac"
    [ 57.815] (II) LoadModule: "ramdac"
    [ 57.815] (II) Module "ramdac" already built-in
    [ 57.815] (II) UnloadModule: "vesa"
    [ 57.816] (II) Unloading vesa
    [ 57.816] (--) Depth 24 pixmap format is 32 bpp
    [ 57.817] (II) RADEON(0): [DRI2] Setup complete
    [ 57.817] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 57.817] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 57.817] (II) RADEON(0): Front buffer size: 7128K
    [ 57.817] (II) RADEON(0): VRAM usage limit set to 222840K
    [ 57.829] (==) RADEON(0): Backing store enabled
    [ 57.829] (II) RADEON(0): Direct rendering enabled
    [ 57.829] (II) RADEON(0): EXA VSync enabled
    [ 57.829] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 57.829] (II) EXA(0): Driver registered support for the following operations:
    [ 57.829] (II) Solid
    [ 57.829] (II) Copy
    [ 57.829] (II) Composite (RENDER acceleration)
    [ 57.829] (II) UploadToScreen
    [ 57.829] (II) DownloadFromScreen
    [ 57.829] (II) RADEON(0): Acceleration enabled
    [ 57.829] (==) RADEON(0): DPMS enabled
    [ 57.829] (==) RADEON(0): Silken mouse enabled
    [ 57.830] (II) RADEON(0): Set up textured video
    [ 57.830] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 57.830] (II) RADEON(0): [XvMC] Extension initialized.
    [ 57.830] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 57.841] (WW) RADEON(0): Option "AccelDFS" is not used
    [ 57.841] (--) RandR disabled
    [ 58.103] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context
    [ 58.103] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 58.103] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 58.103] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 58.103] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 58.103] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 58.103] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 58.103] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 58.104] (II) AIGLX: Loaded and initialized r600
    [ 58.104] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 58.940] (II) RADEON(0): Setting screen physical size to 444 x 277
    [ 59.040] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 59.040] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 59.040] (II) LoadModule: "evdev"
    [ 59.040] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 59.053] (II) Module evdev: vendor="X.Org Foundation"
    [ 59.053] compiled for 1.16.0, module version = 2.9.0
    [ 59.053] Module class: X.Org XInput Driver
    [ 59.053] ABI class: X.Org XInput driver, version 21.0
    [ 59.054] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 11 paused 0
    [ 59.054] (II) Using input driver 'evdev' for 'Power Button'
    [ 59.054] (**) Power Button: always reports core events
    [ 59.054] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 59.054] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 59.054] (--) evdev: Power Button: Found keys
    [ 59.054] (II) evdev: Power Button: Configuring as keyboard
    [ 59.054] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event6"
    [ 59.054] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 59.054] (**) Option "xkb_rules" "evdev"
    [ 59.054] (**) Option "xkb_model" "pc104"
    [ 59.054] (**) Option "xkb_layout" "us"
    [ 59.054] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.105] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 59.105] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 59.107] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 12 paused 0
    [ 59.107] (II) Using input driver 'evdev' for 'Video Bus'
    [ 59.107] (**) Video Bus: always reports core events
    [ 59.107] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 59.107] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 59.107] (--) evdev: Video Bus: Found keys
    [ 59.107] (II) evdev: Video Bus: Configuring as keyboard
    [ 59.107] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:01/input/input8/event7"
    [ 59.107] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 59.107] (**) Option "xkb_rules" "evdev"
    [ 59.107] (**) Option "xkb_model" "pc104"
    [ 59.107] (**) Option "xkb_layout" "us"
    [ 59.107] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.107] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
    [ 59.108] (II) No input driver specified, ignoring this device.
    [ 59.108] (II) This device may have been added with another device file.
    [ 59.108] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 59.108] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 59.108] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 13 paused 0
    [ 59.108] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 59.108] (**) Sleep Button: always reports core events
    [ 59.108] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 59.108] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 59.108] (--) evdev: Sleep Button: Found keys
    [ 59.108] (II) evdev: Sleep Button: Configuring as keyboard
    [ 59.108] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event5"
    [ 59.108] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 59.108] (**) Option "xkb_rules" "evdev"
    [ 59.108] (**) Option "xkb_model" "pc104"
    [ 59.108] (**) Option "xkb_layout" "us"
    [ 59.108] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.109] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event1)
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.109] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.110] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 14 paused 0
    [ 59.110] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.110] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event1"
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.110] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.110] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.110] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.0/0003:17EF:6009.0001/input/input2/event1"
    [ 59.110] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 9)
    [ 59.110] (**) Option "xkb_rules" "evdev"
    [ 59.110] (**) Option "xkb_model" "pc104"
    [ 59.110] (**) Option "xkb_layout" "us"
    [ 59.110] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.110] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/event2)
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "evdev keyboard catchall"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.110] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.111] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 15 paused 0
    [ 59.111] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint'
    [ 59.111] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: always reports core events
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Device: "/dev/input/event2"
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Vendor 0x17ef Product 0x6009
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found 19 mouse buttons
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found x and y relative axes
    [ 59.111] (--) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Found keys
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as mouse
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Configuring as keyboard
    [ 59.111] (**) Option "Emulate3Buttons" "false"
    [ 59.111] (**) Option "EmulateWheel" "true"
    [ 59.111] (**) Option "EmulateWheelButton" "2"
    [ 59.111] (**) Option "YAxisMapping" "4 5"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.111] (**) Option "XAxisMapping" "6 7"
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.111] (**) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.111] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.2/7-5.2:1.1/0003:17EF:6009.0002/input/input3/event2"
    [ 59.111] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint" (type: KEYBOARD, id 10)
    [ 59.111] (**) Option "xkb_rules" "evdev"
    [ 59.111] (**) Option "xkb_model" "pc104"
    [ 59.111] (**) Option "xkb_layout" "us"
    [ 59.111] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.111] (II) evdev: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: initialized for relative axes.
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration profile 0
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration factor: 2.000
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: (accel) acceleration threshold: 4
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/js0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.112] (II) config/udev: Adding input device Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint (/dev/input/mouse0)
    [ 59.112] (**) Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint: Applying InputClass "Keyboard Defaults"
    [ 59.112] (II) No input driver specified, ignoring this device.
    [ 59.112] (II) This device may have been added with another device file.
    [ 59.113] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/event3)
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.113] (**) Logitech USB Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 59.157] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 16 paused 0
    [ 59.157] (II) Using input driver 'evdev' for 'Logitech USB Gaming Mouse'
    [ 59.157] (**) Logitech USB Gaming Mouse: always reports core events
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: Device: "/dev/input/event3"
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Vendor 0x46d Product 0xc042
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found 20 mouse buttons
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found scroll wheel(s)
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found relative axes
    [ 59.157] (--) evdev: Logitech USB Gaming Mouse: Found x and y relative axes
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Configuring as mouse
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: Adding scrollwheel support
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: YAxisMapping: buttons 4 and 5
    [ 59.157] (**) evdev: Logitech USB Gaming Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.157] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb7/7-5/7-5.3/7-5.3:1.0/0003:046D:C042.0003/input/input4/event3"
    [ 59.157] (II) XINPUT: Adding extended input device "Logitech USB Gaming Mouse" (type: MOUSE, id 11)
    [ 59.157] (II) evdev: Logitech USB Gaming Mouse: initialized for relative axes.
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) keeping acceleration scheme 1
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration profile 0
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration factor: 2.000
    [ 59.158] (**) Logitech USB Gaming Mouse: (accel) acceleration threshold: 4
    [ 59.158] (II) config/udev: Adding input device Logitech USB Gaming Mouse (/dev/input/mouse1)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 59.158] (II) No input driver specified, ignoring this device.
    [ 59.158] (II) This device may have been added with another device file.
    [ 59.158] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event11)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event12)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.159] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event13)
    [ 59.159] (II) No input driver specified, ignoring this device.
    [ 59.159] (II) This device may have been added with another device file.
    [ 59.160] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 59.160] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 59.160] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 17 paused 0
    [ 59.160] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 59.160] (**) AT Translated Set 2 keyboard: always reports core events
    [ 59.160] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 59.160] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 59.160] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 59.160] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 59.160] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 59.160] (**) Option "xkb_rules" "evdev"
    [ 59.160] (**) Option "xkb_model" "pc104"
    [ 59.160] (**) Option "xkb_layout" "us"
    [ 59.160] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.161] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 59.161] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 18 paused 0
    [ 59.161] (II) Using input driver 'evdev' for 'SynPS/2 Synaptics TouchPad'
    [ 59.161] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: Device: "/dev/input/event14"
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found 3 mouse buttons
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 59.161] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 59.161] (II) evdev: SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 59.161] (**) evdev: SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.161] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input15/event14"
    [ 59.161] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 59.162] (II) evdev: SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 59.162] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 59.162] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 59.162] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 59.162] (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 59.207] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 19 paused 0
    [ 59.207] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 59.207] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 59.207] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 59.207] (**) Option "Emulate3Buttons" "false"
    [ 59.207] (**) Option "EmulateWheel" "true"
    [ 59.207] (**) Option "EmulateWheelButton" "2"
    [ 59.207] (**) Option "YAxisMapping" "4 5"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 59.207] (**) Option "XAxisMapping" "6 7"
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    [ 59.207] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 59.207] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input16/event15"
    [ 59.207] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 59.207] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 59.207] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 59.208] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 59.208] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
    [ 59.208] (II) No input driver specified, ignoring this device.
    [ 59.208] (II) This device may have been added with another device file.
    [ 59.208] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event8)
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 59.208] (**) ThinkPad Extra Buttons: Applying InputClass "Keyboard Defaults"
    [ 59.209] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 20 paused 0
    [ 59.209] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 59.209] (**) ThinkPad Extra Buttons: always reports core events
    [ 59.209] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event8"
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 59.209] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 59.209] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 59.209] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input9/event8"
    [ 59.209] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 15)
    [ 59.209] (**) Option "xkb_rules" "evdev"
    [ 59.209] (**) Option "xkb_model" "pc104"
    [ 59.209] (**) Option "xkb_layout" "us"
    [ 59.209] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 59.497] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.497] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.497] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.568] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.568] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.568] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 59.941] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 59.941] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 59.941] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.027] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.027] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.027] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 60.099] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 60.099] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 60.099] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.044] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.044] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.044] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 61.112] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 61.112] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 61.112] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 62.930] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 62.930] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 62.930] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 89.683] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 89.730] (II) systemd-logind: got pause for 226:0
    [ 89.730] (II) systemd-logind: got pause for 13:70
    [ 89.730] (II) systemd-logind: got pause for 13:71
    [ 89.730] (II) systemd-logind: got pause for 13:69
    [ 89.730] (II) systemd-logind: got pause for 13:65
    [ 89.730] (II) systemd-logind: got pause for 13:66
    [ 89.730] (II) systemd-logind: got pause for 13:67
    [ 89.730] (II) systemd-logind: got pause for 13:64
    [ 89.730] (II) systemd-logind: got pause for 13:78
    [ 89.730] (II) systemd-logind: got pause for 13:79
    [ 89.730] (II) systemd-logind: got pause for 13:72
    [ 90.518] (II) systemd-logind: got resume for 226:0
    [ 90.518] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 90.551] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 90.551] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 90.551] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 90.591] (II) systemd-logind: got resume for 13:70
    [ 90.591] (II) systemd-logind: got resume for 13:71
    [ 90.592] (II) systemd-logind: got resume for 13:69
    [ 90.592] (II) systemd-logind: got resume for 13:65
    [ 90.592] (II) systemd-logind: got resume for 13:66
    [ 90.603] (II) systemd-logind: got resume for 13:67
    [ 90.616] (II) systemd-logind: got resume for 13:64
    [ 90.620] (II) systemd-logind: got resume for 13:78
    [ 90.633] (II) systemd-logind: got resume for 13:79
    [ 90.641] (II) systemd-logind: got resume for 13:72
    [ 95.368] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 95.429] (II) systemd-logind: got pause for 226:0
    [ 95.429] (II) systemd-logind: got pause for 13:70
    [ 95.429] (II) systemd-logind: got pause for 13:71
    [ 95.429] (II) systemd-logind: got pause for 13:69
    [ 95.429] (II) systemd-logind: got pause for 13:65
    [ 95.429] (II) systemd-logind: got pause for 13:66
    [ 95.429] (II) systemd-logind: got pause for 13:67
    [ 95.429] (II) systemd-logind: got pause for 13:64
    [ 95.429] (II) systemd-logind: got pause for 13:78
    [ 95.429] (II) systemd-logind: got pause for 13:79
    [ 95.429] (II) systemd-logind: got pause for 13:72
    [ 95.750] (II) systemd-logind: got resume for 226:0
    [ 95.750] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 95.783] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 95.783] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 95.784] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 95.821] (II) systemd-logind: got resume for 13:70
    [ 95.821] (II) systemd-logind: got resume for 13:71
    [ 95.821] (II) systemd-logind: got resume for 13:69
    [ 95.821] (II) systemd-logind: got resume for 13:65
    [ 95.836] (II) systemd-logind: got resume for 13:66
    [ 95.843] (II) systemd-logind: got resume for 13:67
    [ 95.853] (II) systemd-logind: got resume for 13:64
    [ 95.866] (II) systemd-logind: got resume for 13:78
    [ 95.876] (II) systemd-logind: got resume for 13:79
    [ 95.897] (II) systemd-logind: got resume for 13:72
    [ 98.008] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 98.061] (II) systemd-logind: got pause for 226:0
    [ 98.061] (II) systemd-logind: got pause for 13:70
    [ 98.061] (II) systemd-logind: got pause for 13:71
    [ 98.061] (II) systemd-logind: got pause for 13:69
    [ 98.061] (II) systemd-logind: got pause for 13:65
    [ 98.061] (II) systemd-logind: got pause for 13:66
    [ 98.061] (II) systemd-logind: got pause for 13:67
    [ 98.061] (II) systemd-logind: got pause for 13:64
    [ 98.061] (II) systemd-logind: got pause for 13:78
    [ 98.061] (II) systemd-logind: got pause for 13:79
    [ 98.061] (II) systemd-logind: got pause for 13:72
    [ 98.614] (II) systemd-logind: got resume for 226:0
    [ 98.614] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 98.648] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 98.648] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 98.648] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 98.687] (II) systemd-logind: got resume for 13:70
    [ 98.688] (II) systemd-logind: got resume for 13:71
    [ 98.688] (II) systemd-logind: got resume for 13:69
    [ 98.688] (II) systemd-logind: got resume for 13:65
    [ 98.693] (II) systemd-logind: got resume for 13:66
    [ 98.703] (II) systemd-logind: got resume for 13:67
    [ 98.710] (II) systemd-logind: got resume for 13:64
    [ 98.723] (II) systemd-logind: got resume for 13:78
    [ 98.726] (II) systemd-logind: got resume for 13:79
    [ 98.743] (II) systemd-logind: got resume for 13:72
    [ 99.618] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 99.674] (II) systemd-logind: got pause for 226:0
    [ 99.674] (II) systemd-logind: got pause for 13:70
    [ 99.674] (II) systemd-logind: got pause for 13:71
    [ 99.674] (II) systemd-logind: got pause for 13:69
    [ 99.674] (II) systemd-logind: got pause for 13:65
    [ 99.674] (II) systemd-logind: got pause for 13:66
    [ 99.674] (II) systemd-logind: got pause for 13:67
    [ 99.674] (II) systemd-logind: got pause for 13:64
    [ 99.674] (II) systemd-logind: got pause for 13:78
    [ 99.674] (II) systemd-logind: got pause for 13:79
    [ 99.674] (II) systemd-logind: got pause for 13:72
    [ 123.984] (II) systemd-logind: got resume for 226:0
    [ 123.984] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 124.017] (II) RADEON(0): EDID vendor "IBM", prod id 10375
    [ 124.017] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 120.60 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (63.9 kHz eP)
    [ 124.017] (II) RADEON(0): Modeline "1680x1050"x0.0 100.53 1680 1712 1760 1888 1050 1051 1054 1065 -hsync -vsync (53.2 kHz e)
    [ 124.096] (II) systemd-logind: got resume for 13:70
    [ 124.096] (II) systemd-logind: got resume for 13:71
    [ 124.096] (II) systemd-logind: got resume for 13:69
    [ 124.096] (II) systemd-logind: got resume for 13:65
    [ 124.104] (II) systemd-logind: got resume for 13:66
    [ 124.118] (II) systemd-logind: got resume for 13:67
    [ 124.130] (II) systemd-logind: got resume for 13:64
    [ 124.140] (II) systemd-logind: got resume for 13:78
    [ 124.150] (II) s

    Yes - I'm using startx:
    [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx
    .xinitrc:
    /usr/bin/xscreensaver -no-splash &
    xautolock -time 60 -locker "sudo pm-suspend" &
    xset -dpms s noblank
    xset b off
    exec mate-session
    Excerpt of the system journal (doesn't look suspicious for me): I just booted, logged in (startx), switch to tty2 to refresh the screen on tty1 and rebooted.
    Sep 01 20:41:37 bra kernel: [drm] radeon kernel modesetting enabled.
    Sep 01 20:41:37 bra kernel: [drm] initializing kernel modesetting (RV635 0x1002:0x9591 0x17AA:0x2117).
    Sep 01 20:41:37 bra kernel: [drm] register mmio base: 0xCFFF0000
    Sep 01 20:41:37 bra kernel: [drm] register mmio size: 65536
    Sep 01 20:41:37 bra kernel: ATOM BIOS: M86M
    Sep 01 20:41:37 bra kernel: radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
    Sep 01 20:41:37 bra kernel: radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    Sep 01 20:41:37 bra kernel: [drm] Detected VRAM RAM=256M, BAR=256M
    Sep 01 20:41:37 bra kernel: [drm] RAM width 128bits DDR
    Sep 01 20:41:37 bra kernel: [TTM] Zone kernel: Available graphics memory: 4054930 kiB
    Sep 01 20:41:37 bra kernel: [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    Sep 01 20:41:37 bra kernel: [TTM] Initializing pool allocator
    Sep 01 20:41:37 bra kernel: [TTM] Initializing DMA pool allocator
    Sep 01 20:41:37 bra kernel: [drm] radeon: 256M of VRAM memory ready
    Sep 01 20:41:37 bra kernel: [drm] radeon: 512M of GTT memory ready.
    Sep 01 20:41:37 bra kernel: [drm] Loading RV635 Microcode
    Sep 01 20:41:37 bra kernel: [drm] radeon: power management initialized
    Sep 01 20:41:37 bra kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:25:9d:62:d0
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    Sep 01 20:41:37 bra kernel: e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
    Sep 01 20:41:37 bra kernel: snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102f conflicts with OpRegion 0x0000000000001000-0x000000000000107f (\_SB_.PCI0.LPC_.PMIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x00000000000011b0-0x00000000000011bf conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011af conflicts with OpRegion 0x0000000000001180-0x00000000000011ff (\_SB_.PCI0.LPC_.LPIO) (20140424/utaddress-258)
    Sep 01 20:41:37 bra kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 01 20:41:37 bra kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4300000-0xf7ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xf4300000-0xf46cffff
    Sep 01 20:41:38 bra kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xf0000000-0xf3ffffff
    Sep 01 20:41:38 bra kernel: r592: driver successfully loaded
    Sep 01 20:41:38 bra kernel: r852: driver loaded successfully
    Sep 01 20:41:38 bra kernel: microcode: CPU0 sig=0x10676, pf=0x80, revision=0x60c
    Sep 01 20:41:38 bra kernel: microcode: CPU1 sig=0x10676, pf=0x80, revision=0x60c
    Sep 01 20:41:38 bra kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Sep 01 20:41:38 bra kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    Sep 01 20:41:38 bra kernel: [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: WB enabled
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0xffff8800bacd5c00
    Sep 01 20:41:38 bra kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Sep 01 20:41:38 bra kernel: [drm] Driver supports precise vblank timestamp query.
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: irq 49 for MSI/MSI-X
    Sep 01 20:41:38 bra kernel: radeon 0000:01:00.0: radeon: using MSI.
    Sep 01 20:41:38 bra kernel: [drm] radeon: irq initialized.
    Sep 01 20:41:38 bra kernel: [drm] ring test on 0 succeeded in 1 usecs
    Sep 01 20:41:38 bra kernel: [drm] ib test on ring 0 succeeded in 0 usecs
    Sep 01 20:41:38 bra kernel: [drm] radeon atom DIG backlight initialized
    Sep 01 20:41:38 bra kernel: [drm] Radeon Display Connectors
    Sep 01 20:41:38 bra kernel: [drm] Connector 0:
    Sep 01 20:41:38 bra kernel: [drm] DVI-I-1
    Sep 01 20:41:38 bra kernel: [drm] HPD3
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] DFP1: INTERNAL_UNIPHY
    Sep 01 20:41:38 bra kernel: [drm] Connector 1:
    Sep 01 20:41:38 bra kernel: [drm] LVDS-1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    Sep 01 20:41:38 bra kernel: [drm] Connector 2:
    Sep 01 20:41:38 bra kernel: [drm] DP-1
    Sep 01 20:41:38 bra kernel: [drm] HPD1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] DFP2: INTERNAL_UNIPHY
    Sep 01 20:41:38 bra kernel: [drm] Connector 3:
    Sep 01 20:41:38 bra kernel: [drm] VGA-1
    Sep 01 20:41:38 bra kernel: [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    Sep 01 20:41:38 bra kernel: [drm] Encoders:
    Sep 01 20:41:38 bra kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
    Sep 01 20:41:38 bra kernel: ppdev: user-space parallel port driver
    Sep 01 20:41:38 bra systemd[1]: Starting Sound Card.
    Sep 01 20:41:38 bra systemd[1]: Reached target Sound Card.
    Sep 01 20:41:38 bra kernel: iTCO_vendor_support: vendor-support=0
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
    Sep 01 20:41:38 bra kernel: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0xa0000000-0xa0ffffff
    Sep 01 20:41:38 bra kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
    Sep 01 20:41:38 bra kernel: excluding 0x60000000-0x60ffffff
    Sep 01 20:41:38 bra kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    Sep 01 20:41:38 bra kernel: iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
    Sep 01 20:41:38 bra kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90010, key code 190): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90011, key code 148): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90012, key code 152): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90013, key code 236): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90014, key code 238): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90015, key code 212): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90016, key code 227): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90017, key code 191): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x90019, key code 205): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001a, key code 225): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001b, key code 224): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[219]: Error calling EVIOCSKEYCODE on device node '/dev/input/event1' (scan code 0x9001d, key code 372): Invalid argument
    Sep 01 20:41:38 bra systemd-udevd[227]: renamed network interface wlan0 to wlp3s0
    Sep 01 20:41:39 bra kernel: [drm] fb mappable at 0xD0141000
    Sep 01 20:41:39 bra kernel: [drm] vram apper at 0xD0000000
    Sep 01 20:41:39 bra kernel: [drm] size 7299072
    Sep 01 20:41:39 bra kernel: [drm] fb depth is 24
    Sep 01 20:41:39 bra kernel: [drm] pitch is 6912
    Sep 01 20:41:39 bra kernel: fbcon: radeondrmfb (fb0) is primary device
    Sep 01 20:41:39 bra kernel: Console: switching to colour frame buffer device 210x65
    Sep 01 20:41:39 bra kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    Sep 01 20:41:39 bra kernel: radeon 0000:01:00.0: registered panic notifier
    Sep 01 20:41:39 bra kernel: [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
    Sep 01 20:41:38 bra systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Sep 01 20:41:39 bra systemd[1]: Started Update UTMP about System Boot/Shutdown.
    Sep 01 20:41:39 bra systemd[1]: Starting System Initialization.
    Sep 01 20:41:39 bra systemd[1]: Reached target System Initialization.
    Sep 01 20:41:39 bra systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    Sep 01 20:41:39 bra systemd[1]: Starting CUPS Printer Service Spool.
    Sep 01 20:41:40 bra systemd[1]: Started Avahi mDNS/DNS-SD Stack.
    Sep 01 20:41:40 bra systemd[1]: Starting Login Service...
    Sep 01 20:41:40 bra systemd[1]: Starting Permit User Sessions...
    Sep 01 20:41:40 bra systemd[1]: Started LVM2 PV scan on device 254:0.
    Sep 01 20:41:40 bra systemd[1]: Started Restore Sound Card State.
    Sep 01 20:41:40 bra systemd[1]: Starting system-systemd\x2dbacklight.slice.
    Sep 01 20:41:40 bra systemd[1]: Created slice system-systemd\x2dbacklight.slice.
    Sep 01 20:41:40 bra systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:radeon_bl0...
    Sep 01 20:41:40 bra systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
    Sep 01 20:41:40 bra systemd[1]: Started Permit User Sessions.
    Sep 01 20:41:40 bra systemd[1]: Starting Getty on tty1...
    Sep 01 20:41:40 bra systemd[1]: Started Getty on tty1.
    Sep 01 20:41:40 bra systemd[1]: Starting Login Prompts.
    Sep 01 20:41:40 bra systemd[1]: Reached target Login Prompts.
    Sep 01 20:41:40 bra systemd-logind[416]: New seat seat0.
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event6 (Power Button)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event7 (Video Bus)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event4 (Lid Switch)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event5 (Sleep Button)
    Sep 01 20:41:40 bra systemd-logind[416]: Watching system buttons on /dev/input/event8 (ThinkPad Extra Buttons)
    Sep 01 20:41:40 bra systemd[1]: Started Login Service.
    Sep 01 20:41:40 bra systemd[1]: Started Initialize hardware monitoring sensors.
    Sep 01 20:41:40 bra systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:radeon_bl0.
    Sep 01 20:41:40 bra systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:acpi_video0.
    Sep 01 20:41:40 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Sep 01 20:41:40 bra systemd[1]: Starting Authorization Manager...
    Sep 01 20:41:40 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
    Sep 01 20:41:40 bra systemd[1]: Starting Manage, Install and Generate Color Profiles...
    Sep 01 20:41:40 bra polkitd[520]: Started polkitd version 0.112
    Sep 01 20:41:40 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.ColorManager'
    Sep 01 20:41:40 bra systemd[1]: Started Manage, Install and Generate Color Profiles.
    Sep 01 20:41:40 bra polkitd[520]: Loading rules from directory /etc/polkit-1/rules.d
    Sep 01 20:41:40 bra polkitd[520]: Loading rules from directory /usr/share/polkit-1/rules.d
    Sep 01 20:41:40 bra polkitd[520]: Finished loading, compiling and executing 2 rules
    Sep 01 20:41:40 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Sep 01 20:41:40 bra systemd[1]: Started Authorization Manager.
    Sep 01 20:41:40 bra polkitd[520]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
    Sep 01 20:41:40 bra dkms[391]: Kernel preparation unnecessary for this kernel. Skipping...
    Sep 01 20:41:41 bra dkms[391]: Building module:
    Sep 01 20:41:41 bra kernel: e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    Sep 01 20:41:41 bra kernel: e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    Sep 01 20:41:43 bra kernel: e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
    Sep 01 20:41:43 bra kernel: e1000e 0000:00:19.0 eth0: 10/100 speed: disabling TSO
    Sep 01 20:41:43 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Sep 01 20:41:43 bra dbus[392]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory.
    Sep 01 20:41:43 bra kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
    Sep 01 20:41:44 bra dkms[391]: cleaning build area....
    Sep 01 20:41:44 bra kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input16
    Sep 01 20:41:44 bra avahi-daemon[383]: Registering new address record for fe80::21c:25ff:fe9d:62d0 on eth0.*.
    Sep 01 20:41:47 bra dkms[391]: cd /var/lib/dkms/fglrx/8.892/build; sh make.sh --nohints --uname_r=3.16.1-1-ARCH --norootcheck....(bad exit status: 1)
    Sep 01 20:41:47 bra dkms[391]: Error! Bad return status for module build on kernel: 3.16.1-1-ARCH (x86_64)
    Sep 01 20:41:47 bra dkms[391]: Consult /var/lib/dkms/fglrx/8.892/build/make.log for more information.
    Sep 01 20:41:47 bra systemd[1]: Started Dynamic Kernel Modules System.
    Sep 01 20:41:48 bra login[427]: pam_unix(login:session): session opened for user hel by LOGIN(uid=0)
    Sep 01 20:41:48 bra systemd[1]: Starting user-1000.slice.
    Sep 01 20:41:48 bra systemd[1]: Created slice user-1000.slice.
    Sep 01 20:41:48 bra systemd[1]: Starting User Manager for UID 1000...
    Sep 01 20:41:48 bra systemd[867]: pam_unix(systemd-user:session): session opened for user hel by (uid=0)
    Sep 01 20:41:48 bra systemd[1]: Starting Session c1 of user hel.
    Sep 01 20:41:48 bra systemd[1]: Started Session c1 of user hel.
    Sep 01 20:41:48 bra systemd-logind[416]: New session c1 of user hel.
    Sep 01 20:41:48 bra systemd[867]: Starting Paths.
    Sep 01 20:41:48 bra systemd[867]: Reached target Paths.
    Sep 01 20:41:48 bra systemd[867]: Starting Timers.
    Sep 01 20:41:48 bra systemd[867]: Reached target Timers.
    Sep 01 20:41:48 bra systemd[867]: Starting Sockets.
    Sep 01 20:41:48 bra systemd[867]: Reached target Sockets.
    Sep 01 20:41:48 bra systemd[867]: Starting Basic System.
    Sep 01 20:41:48 bra systemd[867]: Reached target Basic System.
    Sep 01 20:41:48 bra systemd[867]: Starting Default.
    Sep 01 20:41:48 bra systemd[867]: Reached target Default.
    Sep 01 20:41:48 bra systemd[867]: Startup finished in 131ms.
    Sep 01 20:41:48 bra systemd[1]: Started User Manager for UID 1000.
    Sep 01 20:41:48 bra login[427]: LOGIN ON tty1 BY hel
    Sep 01 20:41:48 bra NetworkManager[384]: <info> startup complete
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
    Sep 01 20:41:54 bra systemd[1]: Starting RealtimeKit Scheduling Policy Service...
    Sep 01 20:41:54 bra systemd[1]: Starting Disk Manager...
    Sep 01 20:41:54 bra polkitd[520]: Registered Authentication Agent for unix-session:c1 (system bus name :1.16 [/usr/lib/mate-polkit/polkit-mate-authentication-agent-1], object path /org/mate/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8)
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Sep 01 20:41:54 bra systemd[1]: Starting Daemon for power management...
    Sep 01 20:41:54 bra udisksd[1121]: udisks daemon version 2.1.3 starting
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.UPower'
    Sep 01 20:41:54 bra systemd[1]: Started Daemon for power management.
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
    Sep 01 20:41:54 bra systemd[1]: Started RealtimeKit Scheduling Policy Service.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully called chroot.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully dropped privileges.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully limited resources.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Running.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Canary thread running.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Watchdog thread running.
    Sep 01 20:41:54 bra dbus[392]: [system] Successfully activated service 'org.freedesktop.UDisks2'
    Sep 01 20:41:54 bra systemd[1]: Started Disk Manager.
    Sep 01 20:41:54 bra udisksd[1121]: Acquired the name org.freedesktop.UDisks2 on the system message bus
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1119 of process 1119 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 1 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra org.a11y.Bus[1057]: Activating service name='org.a11y.atspi.Registry'
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 1 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1193 of process 1119 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 2 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 2 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Successfully made thread 1194 of process 1119 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Sep 01 20:41:54 bra rtkit-daemon[1120]: Supervising 3 threads of 1 processes of 1 users.
    Sep 01 20:41:54 bra org.a11y.Bus[1057]: Successfully activated service 'org.a11y.atspi.Registry'
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: ** (at-spi2-registryd:1185): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
    Sep 01 20:41:54 bra org.a11y.atspi.Registry[1176]: ** (at-spi2-registryd:1185): WARNING **: Unable to register client with session manager
    Sep 01 20:41:54 bra dbus[392]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Sep 01 20:41:54 bra dbus[392]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Successfully made thread 1206 of process 1206 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Supervising 4 threads of 2 processes of 1 users.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Successfully made thread 1208 of process 1208 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Sep 01 20:41:55 bra rtkit-daemon[1120]: Supervising 5 threads of 3 processes of 1 users.
    Sep 01 20:41:55 bra pulseaudio[1208]: [pulseaudio] pid.c: Daemon already running.
    Sep 01 20:41:56 bra dbus[392]: [system] Activating service name='org.mate.SettingsDaemon.DateTimeMechanism' (using servicehelper)
    Sep 01 20:41:56 bra dbus[392]: [system] Successfully activated service 'org.mate.SettingsDaemon.DateTimeMechanism'
    Sep 01 20:42:01 bra systemd-logind[416]: kernel does not support evdev-revocation
    Sep 01 20:42:01 bra systemd[1]: Starting Getty on tty2...
    Sep 01 20:42:01 bra systemd[1]: Started Getty on tty2.
    Sep 01 20:42:05 bra systemd[1]: Started Getty on tty2.
    Sep 01 20:42:08 bra systemd-logind[416]: System is rebooting.
    Sep 01 20:42:08 bra systemd[1]: Stopping Session c1 of user hel.
    Sep 01 20:42:08 bra systemd[1]: Stopped Session c1 of user hel.
    Sep 01 20:42:08 bra systemd[1]: Stopping LVM2 PV scan on device 254:0...
    Sep 01 20:42:08 bra systemd[1]: Stopping Sound Card.
    Sep 01 20:42:08 bra systemd[1]: Stopped target Sound Card.
    Sep 01 20:42:08 bra systemd[1]: Stopping system-systemd\x2dfsck.slice.
    Sep 01 20:42:08 bra systemd[1]: Removed slice system-systemd\x2dfsck.slice.
    Sep 01 20:42:08 bra systemd[1]: Stopping LVM2 metadata daemon...
    Sep 01 20:42:08 bra systemd[1]: Stopping Daemon for power management...
    Sep 01 20:42:08 bra systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
    Sep 01 20:42:08 bra systemd[1]: Stopping Disk Manager...
    Sep 01 20:42:08 bra systemd[1]: Stopping User Manager for UID 1000...
    Sep 01 20:42:09 bra systemd[867]: Stopping Default.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Default.
    Sep 01 20:42:09 bra systemd[867]: Stopping Basic System.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Basic System.
    Sep 01 20:42:09 bra systemd[867]: Stopping Paths.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Paths.
    Sep 01 20:42:09 bra systemd[867]: Stopping Timers.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Timers.
    Sep 01 20:42:09 bra systemd[867]: Stopping Sockets.
    Sep 01 20:42:09 bra systemd[867]: Stopped target Sockets.
    Sep 01 20:42:09 bra systemd[867]: Starting Shutdown.
    Sep 01 20:42:09 bra systemd[867]: Reached target Shutdown.
    Sep 01 20:42:09 bra systemd[867]: Starting Exit the Session...
    Sep 01 20:42:09 bra kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    Sep 01 20:42:08 bra polkitd[520]: Unregistered Authentication Agent for unix-session:c1 (system bus name :1.16, object path /org/mate/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) (disconnected from bus)
    Sep 01 20:42:08 bra thinkfan[387]: Caught deadly signal.
    Sep 01 20:42:08 bra thinkfan[387]: Cleaning up and resetting fan control.
    Sep 01 20:42:08 bra NetworkManager[384]: <info> caught signal 15, shutting down normally.
    Sep 01 20:42:08 bra NetworkManager[384]: <info> (wlp3s0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
    Sep 01 20:42:08 bra NetworkManager[384]: <info> exiting (success)
    Sep 01 20:42:09 bra avahi-daemon[383]: Got SIGTERM, quitting.
    Sep 01 20:42:09 bra avahi-daemon[383]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.100.53.
    Sep 01 20:42:09 bra avahi-daemon[383]: avahi-daemon 0.6.31 exiting.
    Sep 01 20:42:09 bra systemd[868]: pam_unix(systemd-user:session): session closed for user hel
    Sep 01 20:42:09 bra systemd[867]: Received SIGRTMIN+24 from PID 1279 (kill).
    Sep 01 20:42:09 bra NetworkManager[384]: (NetworkManager:384): GLib-CRITICAL **: Source ID 86 was not found when attempting to remove it
    Sep 01 20:42:10 bra systemd[1]: Stopped Getty on tty1.
    Sep 01 20:42:10 bra systemd[1]: Stopped Authorization Manager.
    Sep 01 20:42:10 bra systemd[1]: Stopped Manage, Install and Generate Color Profiles.
    Sep 01 20:42:10 bra systemd[1]: Stopped User Manager for UID 1000.
    Sep 01 20:42:10 bra systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
    Sep 01 20:42:10 bra systemd[1]: Stopped Disk Manager.
    Sep 01 20:42:10 bra systemd[1]: Stopped Daemon for power management.
    Sep 01 20:42:10 bra systemd[1]: Stopped Getty on tty2.
    Sep 01 20:42:10 bra systemd[1]: Stopped Initialize hardware monitoring sensors.
    Sep 01 20:42:10 bra systemd[1]: Stopped Dynamic Kernel Modules System.
    Sep 01 20:42:10 bra systemd[1]: Shutting down.
    Sep 01 20:42:10 bra systemd[1]: Hardware watchdog 'INTCAMT', version 0
    Sep 01 20:42:10 bra systemd[1]: Set hardware watchdog to 10min.
    Sep 01 20:42:10 bra systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    Sep 01 20:42:10 bra systemd-journal[188]: Journal stopped
    I can't downgrade the ati-driver because it needs glamor-egl which conflicts with xorg-1.16.
    After deinstalling the ati-driver and removing the 20-radeon.conf file, I got the following error (Xorg.0.log):
    [ 120.639]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 120.639] X Protocol Version 11, Revision 0
    [ 120.640] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 120.640] Current Operating System: Linux bra 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    [ 120.640] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 initrd=../initramfs-linux.img
    [ 120.640] Build Date: 31 July 2014 11:53:19AM
    [ 120.640]
    [ 120.640] Current version of pixman: 0.32.6
    [ 120.640] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 120.640] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 120.640] (==) Log file: "/home/hel/.local/share/xorg/Xorg.0.log", Time: Mon Sep 1 20:28:35 2014
    [ 120.641] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 120.641] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 120.641] (==) No Layout section. Using the first Screen section.
    [ 120.641] (==) No screen section available. Using defaults.
    [ 120.641] (**) |-->Screen "Default Screen Section" (0)
    [ 120.641] (**) | |-->Monitor "<default monitor>"
    [ 120.641] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 120.641] (==) Automatically adding devices
    [ 120.641] (==) Automatically enabling devices
    [ 120.641] (==) Automatically adding GPU devices
    [ 120.641] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 120.641] Entry deleted from font path.
    [ 120.641] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 120.641] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 120.641] Entry deleted from font path.
    [ 120.641] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 120.641] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 120.641] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 120.641] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 120.641] (II) Loader magic: 0x818d80
    [ 120.641] (II) Module ABI versions:
    [ 120.641] X.Org ANSI C Emulation: 0.4
    [ 120.641] X.Org Video Driver: 18.0
    [ 120.641] X.Org XInput driver : 21.0
    [ 120.641] X.Org Server Extension : 8.0
    [ 120.740] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c4
    [ 120.740] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 120.787] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 120.789] (--) PCI:*(0:1:0:0) 1002:9591:17aa:2117 rev 0, Mem @ 0xd0000000/268435456, 0xcfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 120.789] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 120.790] (II) LoadModule: "glx"
    [ 120.790] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 120.792] (II) Module glx: vendor="X.Org Foundation"
    [ 120.792] compiled for 1.16.0, module version = 1.0.0
    [ 120.792] ABI class: X.Org Server Extension, version 8.0
    [ 120.792] (==) AIGLX enabled
    [ 120.792] (==) Matched ati as autoconfigured driver 0
    [ 120.792] (==) Matched ati as autoconfigured driver 1
    [ 120.792] (==) Matched modesetting as autoconfigured driver 2
    [ 120.792] (==) Matched fbdev as autoconfigured driver 3
    [ 120.792] (==) Matched vesa as autoconfigured driver 4
    [ 120.792] (==) Assigned the driver to the xf86ConfigLayout
    [ 120.792] (II) LoadModule: "ati"
    [ 120.792] (WW) Warning, couldn't open module ati
    [ 120.792] (II) UnloadModule: "ati"
    [ 120.792] (II) Unloading ati
    [ 120.792] (EE) Failed to load module "ati" (module does not exist, 0)
    [ 120.792] (II) LoadModule: "modesetting"
    [ 120.792] (WW) Warning, couldn't open module modesetting
    [ 120.792] (II) UnloadModule: "modesetting"
    [ 120.792] (II) Unloading modesetting
    [ 120.792] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 120.792] (II) LoadModule: "fbdev"
    [ 120.793] (WW) Warning, couldn't open module fbdev
    [ 120.793] (II) UnloadModule: "fbdev"
    [ 120.793] (II) Unloading fbdev
    [ 120.793] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 120.793] (II) LoadModule: "vesa"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 120.793] (II) Module vesa: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 2.3.2
    [ 120.793] Module class: X.Org Video Driver
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) VESA: driver for VESA chipsets: vesa
    [ 120.793] (++) using VT number 1
    [ 120.793] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 120.793] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 120.793] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 120.793] (II) Loading sub module "vbe"
    [ 120.793] (II) LoadModule: "vbe"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 120.793] (II) Module vbe: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 1.1.0
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) Loading sub module "int10"
    [ 120.793] (II) LoadModule: "int10"
    [ 120.793] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 120.793] (II) Module int10: vendor="X.Org Foundation"
    [ 120.793] compiled for 1.16.0, module version = 1.0.0
    [ 120.793] ABI class: X.Org Video Driver, version 18.0
    [ 120.793] (II) VESA(0): initializing int10
    [ 120.794] (WW) xf86ReadBIOS: Failed to open /dev/mem (Permission denied)
    [ 120.794] (EE) VESA(0): Cannot read int vect
    [ 120.794] (II) UnloadModule: "vesa"
    [ 120.794] (II) UnloadSubModule: "int10"
    [ 120.794] (II) Unloading int10
    [ 120.794] (II) UnloadSubModule: "vbe"
    [ 120.794] (II) Unloading vbe
    [ 120.794] (EE) Screen(s) found, but none have a usable configuration.
    [ 120.794] (EE)
    Fatal server error:
    [ 120.794] (EE) no screens found(EE)
    [ 120.794] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 120.794] (EE) Please also check the log file at "/home/hel/.local/share/xorg/Xorg.0.log" for additional information.
    [ 120.794] (EE)
    [ 120.846] (EE) Server terminated with error (1). Closing log file.
    "[   120.794] (WW) xf86ReadBIOS: Failed to open /dev/mem (Permission denied)" seems to be the problem.
    Edit: By the way: I'm using an external monitor but using the laptop without the external monitor leads to the same problem.
    Last edited by hel (2014-09-01 19:10:09)

  • [Solved]Xorg-server and nvidia binary driver don't work

    See topic. When updating to xf86-input-evdev-2.8.2-2  xf86-input-joystick-1.6.2-3  xf86-input-keyboard-1.8.0-2  xf86-input-mouse-1.9.0-2 and xorg-server-1.15.0-1 X won't start and 'systemctl status kdm.service' states that the X server has died. According to Phoronix this should not happen.
    Harvey
    Last edited by Harey (2014-01-14 11:06:53)

    The ABI check is there for a purpose:
    [ 38.018] Loading extension NV-GLX
    [ 38.027] (EE)
    [ 38.027] (EE) Backtrace:
    [ 38.029] (EE) 0: /usr/bin/X (xorg_backtrace+0x48) [0x5834c8]
    [ 38.029] (EE) 1: /usr/bin/X (0x400000+0x1871a9) [0x5871a9]
    [ 38.029] (EE) 2: /usr/lib/libpthread.so.0 (0x7ff70edbf000+0xf870) [0x7ff70edce870]
    [ 38.029] (EE) 3: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7ff708c51000+0x4e427f) [0x7ff70913527f]
    [ 38.029] (EE) 4: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7ff708c51000+0x4eb501) [0x7ff70913c501]
    [ 38.029] (EE) 5: /usr/bin/X (AddScreen+0x71) [0x435c81]
    [ 38.029] (EE) 6: /usr/bin/X (InitOutput+0x3df) [0x4769df]
    [ 38.029] (EE) 7: /usr/bin/X (0x400000+0x3961b) [0x43961b]
    [ 38.029] (EE) 8: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7ff70dc35b05]
    [ 38.029] (EE) 9: /usr/bin/X (0x400000+0x24dae) [0x424dae]
    [ 38.029] (EE)
    [ 38.029] (EE) Segmentation fault at address 0x18
    [ 38.029] (EE)
    Fatal server error:
    [ 38.029] (EE) Caught signal 11 (Segmentation fault). Server aborting
    Seems we have to wait for nvidia to include xorg-server 1.15 into their driver
    Harvey

  • Xorg-server 1.8.1.902-1, xf86-video-ati 6.13.0-1 and KMS

    So, I've done a scheduled, regular system update a couple of hours ago. All went well but when I rebooted and started KDE after a while it crashed. And it did so many times before I figured out that if I turned Compositing off in KDE's System Settings it'd become stable.
    I poked around for some more time since I love Compositing effects in KDE and with no options left decided to remove radeon.modeset=0 option from bootloader menu entry. Just to see what would happen. Before radeon.modeset=1 (or turned on by default) caused me big troubles. This is a Xpress 1250 IGP.
    Now, it seems having KMS support disabled isn't an option if I want Compositing to work in KDE properly which is absolutely fine.
    I'm now wondering what happened. Is it new X or radeon driver version? Is it new kernel version? All this software was upgraded today and I having a hard time trying to pinpoint what lead to the changes.
    Any input would be highly appreciated.

    Laserpithium wrote:
    This is a known bug of X server.
    I have the same, and it is already listed in the bug report of xorg-server.
    After that, how to handle it... Well, we just have to hope that KMS will remain usable the time they close this bug !
    I don't care that much for KMS, really.
    By the way did you notice a drop in 3D performance in KDE? Teeworlds are running lightning fast, though. It seems it's only KWin that's became slower, sometimes to a point of several seconds freeze. Also, it's very noticeable when using Flip Switch effect for window switching

  • [Solved]D-bus problem's after upgrade hal to 5.13 and xorg-server.

    Hello
    Toaday I upgraded my system to following packages.
    startx and I got freeze
    Hal restart fail.
    Dbus restart.
    Fail.
    Error:
    Failed to start message bus: Error in file /etc/dbus-1/system.d/xorg-server.conf collumn 1 line 0 elemnt not found
    I seen that file and it's empty
    Reinstalling dbus don't help.
    User are in group's dbus and hal
    Thanks for help
    Last edited by SpeedVin (2009-08-07 08:54:36)

    ghostHack wrote:
    That file should not be empty, try re-installing the xorg-server package
    [user@masaq ~]$ cat /etc/dbus-1/system.d/xorg-server.conf
    <!DOCTYPE busconfig PUBLIC
    "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
    "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
    <busconfig>
    <policy context="default">
    <allow own="org.x.config.display0"/>
    <allow send_destination="org.x.config.display0"/>
    <allow send_interface="org.x.config.display0"/>
    <allow own="org.x.config.display1"/>
    <allow send_destination="org.x.config.display1"/>
    <allow send_interface="org.x.config.display1"/>
    </policy>
    </busconfig>
    [user@masaq ~]$ pacman -Qo /etc/dbus-1/system.d/xorg-server.conf
    /etc/dbus-1/system.d/xorg-server.conf is owned by xorg-server 1.6.3-2
    Now after try worikng xorg-server file is not empty there are the same config as you posted
    Last edited by SpeedVin (2009-08-07 19:43:46)

Maybe you are looking for

  • IPod Shuffle (2nd gen) not recognized by computer

    I get the following message when attachind my iPod to my computer; USB Device not Recognized...."One of the USB devices attached to this computer has malfunctioned, and windows does not recognize it" There is a second USB port on my computer, however

  • MAJOR EDL Export BUG in 8.2!

    I just upgraded to version 8.2 and now there is a major bug when exporting EDLs with audio clips!   EDLs (cmx3600 format) should only export Timecode In/Out for Source & Record.   The latest 8.2 version is now incorrectly outputting SAMPLE FORMAT for

  • Material Aging

    Hi experts,                I need to calculate the aging report of the Items from the date it was received/ updated in to the Inventory. This will help to find how long the stock is there in the inventory without Utilization. Also to trace dead stock

  • Added a Northbound SNMP Trap Receiver in Cisco PI 1.3, but not getting traps

    Hi; I tried going into the Administration, System Settings, Notification Receivers menu and adding a receiver. The receiver was our  Zenoss 4.2.3 Resource Manager system. Zenoss has no problems  receiving traps from  IOS devices such as switches; tha

  • Yahoo imap push

    Hello all, I just bought the iPhone on Thursday and have been searching the forums for an answer to no avail. I've set up our exchange server at work to Bcc forward everything to my Yahoo! Plus account. If I manually connect via the iPhone, it works