On 2/5/2015 12:11 AM, Mickaël Bucas wrote:

Hi Skippy

I'm currently running a system with two monitors : one attached to the
system board included radeon chip, and one attached to an nvidia card.
I've compiled the kernel with the radeon driver, and the module from
nvidia is loaded at start time.

I've tested it with a single session spanning the two monitors and it worked.
I'm using it in a multi-seat setting, with two keyboards and two mice.
I don't recommend it because it's hard to manage sound, and even
harder for OpenGL (the Gentoo wiki says it's impossible).

With two cards, you can't rely on X11 automatic configuration, so you
have to write your own "xorg.conf", with PCI adresses and relative
positions of the screens :

Here is the configuration I found for single session on two screens :
Section "Device"
     Identifier "Radeon"
     Driver     "radeon"
     BusID      "PCI:1:5:0"
EndSection

Section "Monitor"
         Identifier "LG17p"
         VendorName "LG"
EndSection

Section "Screen"
     Identifier "Screen1"
     Device     "Radeon"
     Monitor    "LG17p"
EndSection

Section "Device"
     Identifier "Nvidia"
     Driver     "nvidia"
     BusID      "PCI:2:0:0"
EndSection

Section "Monitor"
         Identifier "Iiyama24p"
         VendorName "Iiyama"
EndSection

Section "Screen"
     Identifier "Screen0"
     Device     "Nvidia"
     Monitor    "Iiyama24p"
EndSection

Section "ServerLayout"
     Identifier     "default"
     Screen      0  "Screen0" 0 0
     Screen      1  "Screen1" RightOf "Screen0"
EndSection

To analyze problems, your best source is the xorg log file in your
home directory.

Mickaël Bucas


Hi Mickael.

Thank you for your reply.  Knowing this is possible helps.

I did some tweaking and still haven't gotten there however. I also may have made things worse.

When I first started I installed the xf86-video-ati drivers. At that point if I ran startx with no xorg.conf the radeon card would display, but the nvidia card would not.

With the xorg.conf I could get the nvidia card to display, but not the radeon card.

Then I installed the ati-driver package and the radeon card stopped working regardless of the xorg.conf existence or not. I removed ati-driver package, but now the radeon card will not fire up at all, again even if there is no xorg.conf. With no xorg.conf I get no screens at all.

I can still get the nvidia card to fire with an xorg.conf.

Output of lspci:
-----------
02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Pitcairn PRO [Radeon HD 7850] 02:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series] 03:00.0 VGA compatible controller: NVIDIA Corporation G96 [GeForce 9400 GT] (rev a1)
-------------

This is my current xorg.conf which is based on the config which worked with the 2 nvidia cards.
------------------
Section "ServerLayout"

    Identifier     "Layout0"
    Screen      0  "Screen0" 1600 0
    Screen      1  "Screen1" LeftOf "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "1"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from data in "/etc/conf.d/gpm"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "IMPS/2"
    Option         "Device" "/dev/input/mice"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "ProView/EMC/PTS XF-9bi"
    HorizSync       30.0 - 86.0
    VertRefresh     50.0 - 160.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "DELL M992"
    HorizSync       30.0 - 96.0
    VertRefresh     50.0 - 160.0
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "radeon"
    VendorName     "Gigabyte"
    BoardName      "GV-R785OC-1GD"
    BusID          "PCI:2:0:0"
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 9400 GT"
    BusID          "PCI:3:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "1600x1200 +0 +0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "1600x1200 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Disable"
EndSection
-------------------

And this is my current Xorg.0.log, most of which is over my head.

But this part looks to be relevant.
[  1066.961] (EE) Screen 0 deleted because of no matching config section.

Or this.
[  1067.703] (II) AIGLX: Screen 0 is not DRI2 capable
[  1067.703] (EE) AIGLX: reverting to software rendering
[ 1067.732] (EE) AIGLX error: dlopen of /usr/lib64/dri/swrast_dri.so failed (/usr/lib64/dri/swrast_dri.so: undefined symbol: _glapi_tls_Dispatch)
---------------------
[  1066.929]
X.Org X Server 1.16.3
Release Date: 2014-12-20
[  1066.930] X Protocol Version 11, Revision 0
[  1066.930] Build Operating System: Linux 3.18.1-gentoo x86_64 Gentoo
[ 1066.930] Current Operating System: Linux localhost 3.18.5-gentoo #1 SMP PREEMPT Tue Feb 3 08:35:56 MST 2015 x86_64 [ 1066.930] Kernel command line: root=/dev/sdb5 softlevel=console append="acpi_enforce_resources=lax"
[  1066.930] Build Date: 12 January 2015  09:22:12AM
[  1066.930]
[  1066.931] Current version of pixman: 0.32.6
[  1066.931]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[ 1066.931] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 1066.932] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb 5 09:06:54 2015
[  1066.932] (==) Using config file: "/etc/X11/xorg.conf"
[  1066.932] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1066.932] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1066.933] (==) ServerLayout "Layout0"
[  1066.933] (**) |-->Screen "Screen0" (0)
[  1066.933] (**) |   |-->Monitor "Monitor0"
[  1066.933] (**) |   |-->Device "Device0"
[  1066.933] (**) |-->Screen "Screen1" (1)
[  1066.933] (**) |   |-->Monitor "Monitor1"
[  1066.933] (**) |   |-->Device "Device1"
[  1066.933] (**) |-->Input Device "Keyboard0"
[  1066.933] (**) |-->Input Device "Mouse0"
[  1066.933] (**) Option "Xinerama" "1"
[  1066.933] (==) Automatically adding devices
[  1066.933] (==) Automatically enabling devices
[  1066.933] (==) Automatically adding GPU devices
[  1066.933] (**) Xinerama: enabled
[  1066.933] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  1066.933]    Entry deleted from font path.
[  1066.933] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1066.933]    Entry deleted from font path.
[  1066.933] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1066.933]    Entry deleted from font path.
[ 1066.933] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1066.933]    Entry deleted from font path.
[  1066.933]    (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1066.933] (==) FontPath set to:
        /usr/share/fonts/misc/,
        /usr/share/fonts/100dpi/
[  1066.933] (==) ModulePath set to "/usr/lib64/xorg/modules"
[  1066.933] (**) Extension "Composite" is disabled
[ 1066.933] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  1066.933] (WW) Disabling Keyboard0
[  1066.933] (WW) Disabling Mouse0
[  1066.933] (II) Loader magic: 0x806c80
[  1066.933] (II) Module ABI versions:
[  1066.933]    X.Org ANSI C Emulation: 0.4
[  1066.933]    X.Org Video Driver: 18.0
[  1066.933]    X.Org XInput driver : 21.0
[  1066.933]    X.Org Server Extension : 8.0
[  1066.933] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 1066.935] (--) PCI:*(0:2:0:0) 1002:6819:1458:255a rev 0, Mem @ 0xc0000000/268435456, 0xf7fc0000/262144, I/O @ 0x00009000/256, BIOS @ 0x????????/131072 [ 1066.935] (--) PCI: (0:3:0:0) 10de:0641:196e:0562 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000ac00/128, BIOS @ 0x????????/524288
[  1066.935] (II) LoadModule: "glx"
[  1066.935] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[  1066.949] (II) Module glx: vendor="X.Org Foundation"
[  1066.949]    compiled for 1.16.3, module version = 1.0.0
[  1066.949]    ABI class: X.Org Server Extension, version 8.0
[  1066.949] (==) AIGLX enabled
[  1066.949] (II) LoadModule: "radeon"
[  1066.949] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so
[  1066.950] (II) Module radeon: vendor="X.Org Foundation"
[  1066.950]    compiled for 1.16.3, module version = 7.5.0
[  1066.950]    Module class: X.Org Video Driver
[  1066.950]    ABI class: X.Org Video Driver, version 18.0
[  1066.950] (II) LoadModule: "nvidia"
[  1066.950] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
[  1066.953] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1066.953]    compiled for 4.0.2, module version = 1.0.0
[  1066.953]    Module class: X.Org Video Driver
[  1066.953] (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, VERDE, OLAND, OLAND, OLAND, 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, 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,
        KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
        HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
[ 1066.956] (II) NVIDIA dlloader X Driver 340.76 Thu Jan 22 11:03:05 PST 2015
[  1066.956] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1066.956] (--) using VT number 7

[  1066.959] (II) [KMS] drm report modesetting isn't supported.
[  1066.959] (II) Loading sub module "fb"
[  1066.959] (II) LoadModule: "fb"
[  1066.959] (II) Loading /usr/lib64/xorg/modules/libfb.so
[  1066.959] (II) Module fb: vendor="X.Org Foundation"
[  1066.959]    compiled for 1.16.3, module version = 1.0.0
[  1066.959]    ABI class: X.Org ANSI C Emulation, version 0.4
[  1066.959] (WW) Unresolved symbol: fbGetGCPrivateKey
[  1066.960] (II) Loading sub module "wfb"
[  1066.960] (II) LoadModule: "wfb"
[  1066.960] (II) Loading /usr/lib64/xorg/modules/libwfb.so
[  1066.960] (II) Module wfb: vendor="X.Org Foundation"
[  1066.960]    compiled for 1.16.3, module version = 1.0.0
[  1066.960]    ABI class: X.Org ANSI C Emulation, version 0.4
[  1066.960] (II) Loading sub module "ramdac"
[  1066.960] (II) LoadModule: "ramdac"
[  1066.960] (II) Module "ramdac" already built-in
[ 1066.960] (WW) NVIDIA: Xinerama is enabled, so RandR has likely been disabled by the
[  1066.960] (WW) NVIDIA:     X server.
[  1066.961] (EE) Screen 0 deleted because of no matching config section.
[  1066.961] (II) UnloadModule: "radeon"
[  1066.961] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  1066.961] (==) NVIDIA(0): RGB weight 888
[  1066.961] (==) NVIDIA(0): Default visual is TrueColor
[  1066.961] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1066.961] (**) NVIDIA(0): Option "MetaModes" "1600x1200 +0+0"
[  1066.961] (**) NVIDIA(0): Enabling 2D acceleration
[ 1066.961] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X [ 1066.961] (EE) NVIDIA(0): log file that the GLX module has been loaded in your X [ 1066.961] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If [ 1066.961] (EE) NVIDIA(0): you continue to encounter problems, Please try
[  1066.961] (EE) NVIDIA(0):     reinstalling the NVIDIA driver.
[ 1067.631] (II) NVIDIA(0): Display (DELL M992 (CRT-1)) does not support NVIDIA 3D Vision
[  1067.631] (II) NVIDIA(0):     stereo.
[  1067.631] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[ 1067.632] (II) NVIDIA(0): NVIDIA GPU GeForce 9400 GT (G96) at PCI:3:0:0 (GPU-0)
[  1067.632] (--) NVIDIA(0): Memory: 1048576 kBytes
[  1067.632] (--) NVIDIA(0): VideoBIOS: 62.94.2a.00.51
[  1067.632] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 1067.636] (--) NVIDIA(0): Valid display device(s) on GeForce 9400 GT at PCI:3:0:0
[  1067.636] (--) NVIDIA(0):     CRT-0
[  1067.636] (--) NVIDIA(0):     DELL M992 (CRT-1) (boot, connected)
[  1067.636] (--) NVIDIA(0):     TV-0
[  1067.636] (--) NVIDIA(0):     DFP-0
[  1067.636] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[ 1067.636] (--) NVIDIA(GPU-0): DELL M992 (CRT-1): 400.0 MHz maximum pixel clock
[  1067.636] (--) NVIDIA(GPU-0): TV-0: 400.0 MHz maximum pixel clock
[  1067.636] (--) NVIDIA(0): DFP-0: Internal TMDS
[  1067.636] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 1067.636] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 1067.636] (**) NVIDIA(0): device DELL M992 (CRT-1) (Using EDID frequencies has been
[  1067.636] (**) NVIDIA(0):     enabled on all display devices.)
[  1067.637] (II) NVIDIA(0): Validated MetaModes:
[  1067.637] (II) NVIDIA(0):     "1600x1200+0+0"
[ 1067.637] (II) NVIDIA(0): Virtual screen size determined to be 1600 x 1200 [ 1067.642] (--) NVIDIA(0): DPI set to (116, 117); computed from "UseEdidDpi" X config
[  1067.642] (--) NVIDIA(0):     option
[  1067.642] (--) Depth 24 pixmap format is 32 bpp
[ 1067.642] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
[  1067.651] (II) NVIDIA(0): Setting mode "1600x1200+0+0"
[  1067.699] (==) NVIDIA(0): Disabling shared memory pixmaps
[  1067.699] (==) NVIDIA(0): Backing store disabled
[  1067.699] (==) NVIDIA(0): Silken mouse enabled
[  1067.699] (==) NVIDIA(0): DPMS enabled
[  1067.699] (WW) NVIDIA(0): Option "TwinView" is not used
[  1067.699] (II) Loading sub module "dri2"
[  1067.699] (II) LoadModule: "dri2"
[  1067.699] (II) Module "dri2" already built-in
[  1067.699] (II) NVIDIA(0): [DRI2] Setup complete
[  1067.699] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  1067.699] (WW) NVIDIA(0): Not registering RandR
[  1067.699] (==) RandR enabled
[  1067.703] (II) AIGLX: Screen 0 is not DRI2 capable
[  1067.703] (EE) AIGLX: reverting to software rendering
[ 1067.732] (EE) AIGLX error: dlopen of /usr/lib64/dri/swrast_dri.so failed (/usr/lib64/dri/swrast_dri.so: undefined symbol: _glapi_tls_Dispatch)
[  1067.732] (EE) GLX: could not load software renderer
[  1067.732] (II) GLX: no usable GL providers found for screen 0
[ 1067.765] (II) config/udev: Adding input device Power Button (/dev/input/event1) [ 1067.765] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1067.765] (II) LoadModule: "evdev"
[  1067.765] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  1067.766] (II) Module evdev: vendor="X.Org Foundation"
[  1067.766]    compiled for 1.16.2.901, module version = 2.9.1
[  1067.766]    Module class: X.Org XInput Driver
[  1067.766]    ABI class: X.Org XInput driver, version 21.0
[  1067.766] (II) Using input driver 'evdev' for 'Power Button'
[  1067.766] (**) Power Button: always reports core events
[  1067.766] (**) evdev: Power Button: Device: "/dev/input/event1"
[  1067.766] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1067.766] (--) evdev: Power Button: Found keys
[  1067.767] (II) evdev: Power Button: Configuring as keyboard
[ 1067.767] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1" [ 1067.767] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1067.767] (**) Option "xkb_rules" "evdev"
[  1067.767] (**) Option "xkb_model" "pc104"
[  1067.767] (**) Option "xkb_layout" "us"
[ 1067.784] (II) config/udev: Adding input device Power Button (/dev/input/event0) [ 1067.784] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1067.784] (II) Using input driver 'evdev' for 'Power Button'
[  1067.784] (**) Power Button: always reports core events
[  1067.784] (**) evdev: Power Button: Device: "/dev/input/event0"
[  1067.784] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1067.784] (--) evdev: Power Button: Found keys
[  1067.784] (II) evdev: Power Button: Configuring as keyboard
[ 1067.784] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0" [ 1067.784] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  1067.784] (**) Option "xkb_rules" "evdev"
[  1067.784] (**) Option "xkb_model" "pc104"
[  1067.784] (**) Option "xkb_layout" "us"
[ 1067.784] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/event2) [ 1067.784] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "evdev keyboard catchall" [ 1067.784] (II) Using input driver 'evdev' for 'MOSART Semi. 2.4G Keyboard Mouse' [ 1067.784] (**) MOSART Semi. 2.4G Keyboard Mouse: always reports core events [ 1067.784] (**) evdev: MOSART Semi. 2.4G Keyboard Mouse: Device: "/dev/input/event2" [ 1067.784] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Vendor 0x62a Product 0x4101
[  1067.784] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found keys
[ 1067.784] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Configuring as keyboard [ 1067.784] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6.1/2-6.1:1.0/0003:062A:4101.0001/input/input5/event2" [ 1067.784] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Keyboard Mouse" (type: KEYBOARD, id 8)
[  1067.784] (**) Option "xkb_rules" "evdev"
[  1067.784] (**) Option "xkb_model" "pc104"
[  1067.784] (**) Option "xkb_layout" "us"
[ 1067.785] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/event3) [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "evdev pointer catchall" [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "evdev keyboard catchall" [ 1067.785] (II) Using input driver 'evdev' for 'MOSART Semi. 2.4G Keyboard Mouse' [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: always reports core events [ 1067.785] (**) evdev: MOSART Semi. 2.4G Keyboard Mouse: Device: "/dev/input/event3" [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Vendor 0x62a Product 0x4101 [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found 9 mouse buttons [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found scroll wheel(s) [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found relative axes [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found x and y relative axes [ 1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found absolute axes [ 1067.785] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Forcing absolute x/y axes to exist.
[  1067.785] (--) evdev: MOSART Semi. 2.4G Keyboard Mouse: Found keys
[ 1067.785] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Configuring as mouse [ 1067.785] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Configuring as keyboard [ 1067.785] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Adding scrollwheel support [ 1067.785] (**) evdev: MOSART Semi. 2.4G Keyboard Mouse: YAxisMapping: buttons 4 and 5 [ 1067.785] (**) evdev: MOSART Semi. 2.4G Keyboard Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 1067.785] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6.1/2-6.1:1.1/0003:062A:4101.0002/input/input6/event3" [ 1067.785] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Keyboard Mouse" (type: KEYBOARD, id 9)
[  1067.785] (**) Option "xkb_rules" "evdev"
[  1067.785] (**) Option "xkb_model" "pc104"
[  1067.785] (**) Option "xkb_layout" "us"
[ 1067.785] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: initialized for relative axes. [ 1067.785] (WW) evdev: MOSART Semi. 2.4G Keyboard Mouse: ignoring absolute axes. [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) keeping acceleration scheme 1 [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) acceleration profile 0 [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) acceleration factor: 2.000 [ 1067.785] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) acceleration threshold: 4 [ 1067.786] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/mouse0)
[  1067.786] (II) No input driver specified, ignoring this device.
[  1067.786] (II) This device may have been added with another device file.
[ 1067.786] (II) config/udev: Adding input device HID 0b38:0010 (/dev/input/event4) [ 1067.786] (**) HID 0b38:0010: Applying InputClass "evdev keyboard catchall"
[  1067.786] (II) Using input driver 'evdev' for 'HID 0b38:0010'
[  1067.786] (**) HID 0b38:0010: always reports core events
[  1067.786] (**) evdev: HID 0b38:0010: Device: "/dev/input/event4"
[  1067.786] (--) evdev: HID 0b38:0010: Vendor 0xb38 Product 0x10
[  1067.786] (--) evdev: HID 0b38:0010: Found keys
[  1067.786] (II) evdev: HID 0b38:0010: Configuring as keyboard
[ 1067.786] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6.2/2-6.2:1.0/0003:0B38:0010.0003/input/input7/event4" [ 1067.786] (II) XINPUT: Adding extended input device "HID 0b38:0010" (type: KEYBOARD, id 10)
[  1067.786] (**) Option "xkb_rules" "evdev"
[  1067.786] (**) Option "xkb_model" "pc104"
[  1067.786] (**) Option "xkb_layout" "us"
[ 1067.786] (II) config/udev: Adding input device HID 0b38:0010 (/dev/input/event5) [ 1067.786] (**) HID 0b38:0010: Applying InputClass "evdev keyboard catchall"
[  1067.786] (II) Using input driver 'evdev' for 'HID 0b38:0010'
[  1067.786] (**) HID 0b38:0010: always reports core events
[  1067.786] (**) evdev: HID 0b38:0010: Device: "/dev/input/event5"
[  1067.786] (--) evdev: HID 0b38:0010: Vendor 0xb38 Product 0x10
[  1067.786] (--) evdev: HID 0b38:0010: Found 1 mouse buttons
[  1067.786] (--) evdev: HID 0b38:0010: Found scroll wheel(s)
[  1067.786] (--) evdev: HID 0b38:0010: Found relative axes
[  1067.786] (II) evdev: HID 0b38:0010: Forcing relative x/y axes to exist.
[  1067.786] (--) evdev: HID 0b38:0010: Found absolute axes
[  1067.786] (II) evdev: HID 0b38:0010: Forcing absolute x/y axes to exist.
[  1067.786] (--) evdev: HID 0b38:0010: Found keys
[  1067.786] (II) evdev: HID 0b38:0010: Configuring as mouse
[  1067.786] (II) evdev: HID 0b38:0010: Configuring as keyboard
[  1067.786] (II) evdev: HID 0b38:0010: Adding scrollwheel support
[  1067.786] (**) evdev: HID 0b38:0010: YAxisMapping: buttons 4 and 5
[ 1067.786] (**) evdev: HID 0b38:0010: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 1067.786] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6/2-6.2/2-6.2:1.1/0003:0B38:0010.0004/input/input8/event5" [ 1067.786] (II) XINPUT: Adding extended input device "HID 0b38:0010" (type: KEYBOARD, id 11)
[  1067.787] (**) Option "xkb_rules" "evdev"
[  1067.787] (**) Option "xkb_model" "pc104"
[  1067.787] (**) Option "xkb_layout" "us"
[  1067.787] (II) evdev: HID 0b38:0010: initialized for relative axes.
[  1067.787] (WW) evdev: HID 0b38:0010: ignoring absolute axes.
[  1067.787] (**) HID 0b38:0010: (accel) keeping acceleration scheme 1
[  1067.787] (**) HID 0b38:0010: (accel) acceleration profile 0
[  1067.787] (**) HID 0b38:0010: (accel) acceleration factor: 2.000
[  1067.787] (**) HID 0b38:0010: (accel) acceleration threshold: 4
[  1100.417] (II) evdev: HID 0b38:0010: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.417] (II) evdev: HID 0b38:0010: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.417] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.417] (II) evdev: MOSART Semi. 2.4G Keyboard Mouse: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.417] (II) evdev: Power Button: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.417] (II) evdev: Power Button: Close
[  1100.417] (II) UnloadModule: "evdev"
[  1100.455] (II) NVIDIA(GPU-0): Deleting GPU-0
[  1100.458] (EE) Server terminated successfully (0). Closing log file.
-------------------------------

Thanks, Skippy

Reply via email to