Hi Hans,

Thanks for your info, I give it a quick try:
Section "OutputClass"
    Identifier "amd"
    MatchDriver "amdgpu"
    Driver "modesetting"
    Option "PrimaryGPU" "yes"
EndSection

Section "OutputClass"
    Identifier "intel"
    MatchDriver "i915_bpo"
    Driver "modesetting"
EndSection

Seems indeed some bugs in it, xserver start as expected with amdgpu as master
and i915 as slave (Xorg.0.log attached), but the screen is black, and run 
xrandr:
1. "xrandr --setprovideroutputsource 1 0" won't add any iGPU's output (0 is 
amdgpu, 1 is intel)
2. "xrandr --setprovideroutputsource 0 1" crash the xserver:
Xorg: ../../../xserver/dix/dispatch.c:4018: AttachOutputGPU: Assertion 
`new->isGPU' failed.
But I believe it can be fixed.

MS_ALL_IN_ONE method is my previous work when xserver has no proper PRIME sync.
And I find it's also useful for embedded platforms like iMX6/etnaviv. So 
published here.
As the MS_ALL_IN_ONE environment variable, I can change it to be an option of 
modesetting.

Now as the PRIME sync is upstreamed, I think they can achieve nearly same 
effect in theory,
but still minor difference when implementation in each DDX like modesetting 
need a proper
implementation of PresentSharedPixmap() for “OpenGL Syncing To VBlank”. I just 
provide
another way.

Regards,
Qiang



________________________________________
From: Hans de Goede <hdego...@redhat.com>
Sent: Sunday, January 8, 2017 6:45:36 PM
To: Yu, Qiang; xorg-devel@lists.x.org
Subject: Re: [PATCH v2 xserver 00/11] modesetting: MS_ALL_IN_ONE

Hi,

On 07-01-17 09:01, Qiang Yu wrote:
> V2: add PATCH 11 to support GPUScreen capable of display
>
> This is for hybrid drm device use case that one drm device
> is only capable of display and the other is only capable of
> rendering.
>
> Usage: start xserver with MS_ALL_IN_ONE=1, and configure both
> the display (Screen) and render (GPUScreen) drm devices using
> modesetting DDX, it will use Screen as display, GPUScreen as
> render and create one screen for them. If the render device
> is also capable of display, create a GPUScreen for it in
> addition.
>
> Client see only the render device and load render device's DRI
> driver. Server side render is also accelerated by the render
> device. Display device only display what render device draws.
>
> There is still one problem: DRI3 can't support page flip because
> client doesn't know when to create a linear pixmap for flip.

I've recently more or less made the same thing work for the
nvidia binary driver, but in a much simpler way. If you
write a xorg.conf which sets the render-only GPU as primary
then no changes to the modesetting driver are necessary
at all. Specifically some patches of mine were recently
merged to master allowing to do this without needing to
specify bus-ids, a xorg.conf snippet like this one is
sufficient:

https://fedorapeople.org/~jwrdegoede/10-nvidia-driver.conf

The trick here is these 2 lines:

        MatchDriver "nvidia-drm"
        Option "PrimaryGPU" "yes"

Which make any GPU which has the nvidia-drm kernel driver
be seen as primary, overriding the default primary detection
which looks at which GPU has its vga registers mmio mapped.

At least this works with the nvidia binary driver, it may be
that some small changes are needed when using the modesetting
driver on the render GPU.

I wonder if you can do something similar for your use case
without needing all these changes.

Eitherway depending on an environment variable for this
behavior is unacceptable IMHO, this really should be configured
through a xorg.conf snippet.

 > Tested on a laptop with Intel iGPU and AMD dGPU.

On such a setup you should be able to get things to work using
master + a config snippet similar to:

https://fedorapeople.org/~jwrdegoede/10-nvidia-driver.conf

Without needing a patches modesetting driver at all.

Regards,

Hans








>
> Qiang Yu (11):
>   modesetting: add MS_ALL_IN_ONE handling
>   modesetting: add is_primary to mark entity type
>   modesetting: remove unused PciInfo in modesettingRec
>   modesetting: add render entity init and free
>   Revert "modesetting: Delete dead drmmode_bo_for_pixmap function."
>   dri2: refine dri2_probe_driver_name
>   modesetting: separate render and display
>   modesetting: use drmmode_bo_for_pixmap in ms_do_pageflip
>   modesetting: dri2 allocate linear backbuffer
>   modesetting: allow display node has no gbm support
>   modesetting: still create GPUScreen when it's capable of display
>
>  hw/xfree86/dri2/dri2.c                           |  35 +--
>  hw/xfree86/drivers/modesetting/dri2.c            |  33 ++-
>  hw/xfree86/drivers/modesetting/driver.c          | 265 
> ++++++++++++++++-------
>  hw/xfree86/drivers/modesetting/driver.h          |   9 +-
>  hw/xfree86/drivers/modesetting/drmmode_display.c | 128 ++++++++++-
>  hw/xfree86/drivers/modesetting/drmmode_display.h |   3 +
>  hw/xfree86/drivers/modesetting/dumb_bo.c         |  11 +
>  hw/xfree86/drivers/modesetting/dumb_bo.h         |   1 +
>  hw/xfree86/drivers/modesetting/pageflip.c        |   4 +-
>  hw/xfree86/drivers/modesetting/present.c         |   6 +
>  10 files changed, 385 insertions(+), 110 deletions(-)
>
[  2014.904] 
This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.
[  2014.904] 
X.Org X Server 1.19.99.1
Release Date: 2016-11-18
[  2014.904] X Protocol Version 11, Revision 0
[  2014.904] Build Operating System: Linux 4.4.0-57-generic x86_64 
[  2014.904] Current Operating System: Linux jenkins-Precision-7520 4.4.0-57-generic #78-Ubuntu SMP Fri Dec 9 23:50:32 UTC 2016 x86_64
[  2014.904] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-57-generic.efi.signed root=UUID=2f1c930c-e220-4d09-920b-6a437a6bb137 ro quiet splash vt.handoff=7
[  2014.904] Build Date: 06 January 2017  01:49:00PM
[  2014.904]  
[  2014.904] Current version of pixman: 0.33.6
[  2014.904] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  2014.904] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  2014.904] (==) Log file: "/usr/local/var/log/Xorg.0.log", Time: Sun Jan  8 20:13:05 2017
[  2014.905] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  2014.905] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
[  2014.905] (==) No Layout section.  Using the first Screen section.
[  2014.905] (==) No screen section available. Using defaults.
[  2014.905] (**) |-->Screen "Default Screen Section" (0)
[  2014.905] (**) |   |-->Monitor "<default monitor>"
[  2014.905] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  2014.905] (==) Automatically adding devices
[  2014.905] (==) Automatically enabling devices
[  2014.905] (==) Automatically adding GPU devices
[  2014.905] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  2014.905] (WW) The directory "/usr/share/fonts/X11/TTF/" does not exist.
[  2014.905] 	Entry deleted from font path.
[  2014.905] (WW) The directory "/usr/share/fonts/X11/OTF/" does not exist.
[  2014.905] 	Entry deleted from font path.
[  2014.905] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[  2014.905] 	Entry deleted from font path.
[  2014.905] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[  2014.905] 	Entry deleted from font path.
[  2014.905] (==) FontPath set to:
	/usr/share/fonts/X11/misc/,
	/usr/share/fonts/X11/Type1/
[  2014.905] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[  2014.905] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  2014.905] (II) Loader magic: 0x817d40
[  2014.905] (II) Module ABI versions:
[  2014.905] 	X.Org ANSI C Emulation: 0.4
[  2014.905] 	X.Org Video Driver: 23.0
[  2014.905] 	X.Org XInput driver : 24.1
[  2014.905] 	X.Org Server Extension : 10.0
[  2014.905] (++) using VT number 1

[  2014.905] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[  2014.906] (II) xfree86: Adding drm device (/dev/dri/card0)
[  2014.907] (II) xfree86: Adding drm device (/dev/dri/card1)
[  2014.908] (**) OutputClass "amd" setting /dev/dri/card0 as PrimaryGPU
[  2014.909] (--) PCI: (0:0:2:0) 8086:591b:1028:07b0 rev 1, Mem @ 0xeb000000/16777216, 0x80000000/268435456, I/O @ 0x0000f000/64
[  2014.909] (--) PCI:*(0:1:0:0) 1002:67ef:1028:07b0 rev 193, Mem @ 0xc0000000/268435456, 0xd0000000/2097152, 0xec300000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[  2014.909] (II) Open ACPI successful (/var/run/acpid.socket)
[  2014.909] (II) LoadModule: "glx"
[  2014.909] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[  2014.910] (II) Module glx: vendor="X.Org Foundation"
[  2014.910] 	compiled for 1.19.99.1, module version = 1.0.0
[  2014.910] 	ABI class: X.Org Server Extension, version 10.0
[  2014.910] (II) Applying OutputClass "amd" to /dev/dri/card0
[  2014.910] 	loading driver: modesetting
[  2014.910] (II) Applying OutputClass "intel" to /dev/dri/card1
[  2014.910] 	loading driver: modesetting
[  2014.910] (==) Matched modesetting as autoconfigured driver 0
[  2014.910] (==) Matched ati as autoconfigured driver 1
[  2014.910] (==) Matched modesetting as autoconfigured driver 2
[  2014.910] (==) Matched intel as autoconfigured driver 3
[  2014.910] (==) Matched ati as autoconfigured driver 4
[  2014.910] (==) Matched modesetting as autoconfigured driver 5
[  2014.910] (==) Matched fbdev as autoconfigured driver 6
[  2014.910] (==) Matched vesa as autoconfigured driver 7
[  2014.910] (==) Assigned the driver to the xf86ConfigLayout
[  2014.910] (II) LoadModule: "modesetting"
[  2014.910] (II) Loading /usr/local/lib/xorg/modules/drivers/modesetting_drv.so
[  2014.910] (II) Module modesetting: vendor="X.Org Foundation"
[  2014.910] 	compiled for 1.19.99.1, module version = 1.19.99
[  2014.910] 	Module class: X.Org Video Driver
[  2014.910] 	ABI class: X.Org Video Driver, version 23.0
[  2014.910] (II) LoadModule: "ati"
[  2014.910] (WW) Warning, couldn't open module ati
[  2014.910] (II) UnloadModule: "ati"
[  2014.910] (II) Unloading ati
[  2014.910] (EE) Failed to load module "ati" (module does not exist, 0)
[  2014.910] (II) LoadModule: "intel"
[  2014.910] (WW) Warning, couldn't open module intel
[  2014.910] (II) UnloadModule: "intel"
[  2014.910] (II) Unloading intel
[  2014.910] (EE) Failed to load module "intel" (module does not exist, 0)
[  2014.910] (II) LoadModule: "fbdev"
[  2014.910] (WW) Warning, couldn't open module fbdev
[  2014.910] (II) UnloadModule: "fbdev"
[  2014.910] (II) Unloading fbdev
[  2014.910] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  2014.910] (II) LoadModule: "vesa"
[  2014.910] (WW) Warning, couldn't open module vesa
[  2014.910] (II) UnloadModule: "vesa"
[  2014.910] (II) Unloading vesa
[  2014.910] (EE) Failed to load module "vesa" (module does not exist, 0)
[  2014.910] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  2014.911] (II) modeset(0): using drv /dev/dri/card0, all in one: disabled
[  2014.911] (WW) Falling back to old probe method for modesetting
[  2014.911] (II) modeset(G0): using drv /dev/dri/card1, all in one: disabled
[  2014.911] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  2014.911] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[  2014.911] (II) Applying OutputClass "amd" options to /dev/dri/card0
[  2014.911] (==) modeset(0): RGB weight 888
[  2014.911] (==) modeset(0): Default visual is TrueColor
[  2014.911] (II) Loading sub module "glamoregl"
[  2014.911] (II) LoadModule: "glamoregl"
[  2014.911] (II) Loading /usr/local/lib/xorg/modules/libglamoregl.so
[  2014.915] (II) Module glamoregl: vendor="X.Org Foundation"
[  2014.915] 	compiled for 1.19.99.1, module version = 1.0.0
[  2014.915] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  2014.915] (II) glamor: OpenGL accelerated X.org driver based.
[  2014.927] (II) glamor: EGL version 1.4 (DRI2):
[  2014.929] (II) modeset(0): glamor initialized
[  2014.929] (II) modeset(0): Output eDP-1 has no monitor section
[  2014.929] (II) modeset(0): Output DP-1 has no monitor section
[  2014.929] (II) modeset(0): Output DP-2 has no monitor section
[  2014.929] (II) modeset(0): Output DP-3 has no monitor section
[  2014.929] (II) modeset(0): Output DP-4 has no monitor section
[  2014.929] (II) modeset(0): EDID for output eDP-1
[  2014.929] (II) modeset(0): EDID for output DP-1
[  2014.929] (II) modeset(0): EDID for output DP-2
[  2014.929] (II) modeset(0): EDID for output DP-3
[  2014.929] (II) modeset(0): EDID for output DP-4
[  2014.929] (II) modeset(0): Output eDP-1 disconnected
[  2014.929] (II) modeset(0): Output DP-1 disconnected
[  2014.929] (II) modeset(0): Output DP-2 disconnected
[  2014.929] (II) modeset(0): Output DP-3 disconnected
[  2014.929] (II) modeset(0): Output DP-4 disconnected
[  2014.929] (WW) modeset(0): No outputs definitely connected, trying again...
[  2014.929] (II) modeset(0): Output eDP-1 disconnected
[  2014.929] (II) modeset(0): Output DP-1 disconnected
[  2014.929] (II) modeset(0): Output DP-2 disconnected
[  2014.929] (II) modeset(0): Output DP-3 disconnected
[  2014.929] (II) modeset(0): Output DP-4 disconnected
[  2014.929] (WW) modeset(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
[  2014.929] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[  2014.929] (==) modeset(0): DPI set to (96, 96)
[  2014.929] (II) Loading sub module "fb"
[  2014.929] (II) LoadModule: "fb"
[  2014.929] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[  2014.929] (II) Module fb: vendor="X.Org Foundation"
[  2014.929] 	compiled for 1.19.99.1, module version = 1.0.0
[  2014.929] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  2014.929] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[  2014.929] (==) modeset(G0): RGB weight 888
[  2014.929] (==) modeset(G0): Default visual is TrueColor
[  2014.929] (II) Loading sub module "glamoregl"
[  2014.929] (II) LoadModule: "glamoregl"
[  2014.929] (II) Loading /usr/local/lib/xorg/modules/libglamoregl.so
[  2014.929] (II) Module glamoregl: vendor="X.Org Foundation"
[  2014.929] 	compiled for 1.19.99.1, module version = 1.0.0
[  2014.929] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  2014.929] (II) glamor: OpenGL accelerated X.org driver based.
[  2014.933] (II) glamor: EGL version 1.4 (DRI2):
[  2014.934] (II) modeset(G0): glamor initialized
[  2014.934] (II) modeset(G0): Output eDP-1-2 has no monitor section
[  2014.935] (II) modeset(G0): Output DP-1-5 has no monitor section
[  2015.060] (II) modeset(G0): Output HDMI-1-1 has no monitor section
[  2015.060] (II) modeset(G0): Output DP-1-6 has no monitor section
[  2015.188] (II) modeset(G0): Output HDMI-1-2 has no monitor section
[  2015.188] (II) modeset(G0): Output DP-1-7 has no monitor section
[  2015.316] (II) modeset(G0): Output HDMI-1-3 has no monitor section
[  2015.316] (II) modeset(G0): EDID for output eDP-1-2
[  2015.316] (II) modeset(G0): Manufacturer: BOE  Model: 690  Serial#: 0
[  2015.316] (II) modeset(G0): Year: 2015  Week: 1
[  2015.316] (II) modeset(G0): EDID Version: 1.4
[  2015.316] (II) modeset(G0): Digital Display Input
[  2015.316] (II) modeset(G0): 6 bits per channel
[  2015.316] (II) modeset(G0): Digital interface is DisplayPort
[  2015.316] (II) modeset(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[  2015.316] (II) modeset(G0): Gamma: 2.20
[  2015.316] (II) modeset(G0): No DPMS capabilities specified
[  2015.316] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[  2015.316] (II) modeset(G0): First detailed timing is preferred mode
[  2015.316] (II) modeset(G0): Preferred mode is native pixel format and refresh rate
[  2015.316] (II) modeset(G0): redX: 0.590 redY: 0.350   greenX: 0.329 greenY: 0.555
[  2015.316] (II) modeset(G0): blueX: 0.152 blueY: 0.118   whiteX: 0.312 whiteY: 0.328
[  2015.316] (II) modeset(G0): Manufacturer's mask: 0
[  2015.316] (II) modeset(G0): Supported detailed timing:
[  2015.316] (II) modeset(G0): clock: 152.6 MHz   Image Size:  344 x 193 mm
[  2015.316] (II) modeset(G0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2192 h_border: 0
[  2015.316] (II) modeset(G0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1160 v_border: 0
[  2015.316] (II) modeset(G0): Supported detailed timing:
[  2015.316] (II) modeset(G0): clock: 113.1 MHz   Image Size:  344 x 193 mm
[  2015.316] (II) modeset(G0): h_active: 1920  h_sync: 2020  h_sync_end 2120 h_blank_end 2142 h_border: 0
[  2015.316] (II) modeset(G0): v_active: 1080  v_sync: 1100  v_sync_end 1120 v_blanking: 1100 v_border: 0
[  2015.316] (II) modeset(G0):  C1JFR€NT15N41
[  2015.316] (II) modeset(G0): Unknown vendor-specific block 0
[  2015.316] (II) modeset(G0): EDID (in hex):
[  2015.316] (II) modeset(G0): 	00ffffffffffff0009e5900600000000
[  2015.317] (II) modeset(G0): 	01190104952213780a24109759548e27
[  2015.317] (II) modeset(G0): 	1e505400000001010101010101010101
[  2015.317] (II) modeset(G0): 	0101010101019c3b8010713850403020
[  2015.317] (II) modeset(G0): 	360058c11000001a2e2c80de70381440
[  2015.317] (II) modeset(G0): 	6464440558c11000001a000000fe0043
[  2015.317] (II) modeset(G0): 	314a4652804e5431354e343100000000
[  2015.317] (II) modeset(G0): 	0000412196001000000a010a202000bb
[  2015.317] (II) modeset(G0): Printing probed modes for output eDP-1-2
[  2015.317] (II) modeset(G0): Modeline "1920x1080"x60.0  152.60  1920 1968 2000 2192  1080 1083 1089 1160 +hsync -vsync (69.6 kHz eP)
[  2015.317] (II) modeset(G0): Modeline "1920x1080"x47.1  113.10  1920 2020 2120 2142  1080 1100 1120 1121 +hsync -vsync (52.8 kHz e)
[  2015.317] (II) modeset(G0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[  2015.317] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[  2015.317] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[  2015.317] (II) modeset(G0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[  2015.317] (II) modeset(G0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[  2015.317] (II) modeset(G0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[  2015.317] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[  2015.317] (II) modeset(G0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[  2015.317] (II) modeset(G0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[  2015.317] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[  2015.317] (II) modeset(G0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[  2015.317] (II) modeset(G0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[  2015.317] (II) modeset(G0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[  2015.317] (II) modeset(G0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[  2015.317] (II) modeset(G0): EDID for output DP-1-5
[  2015.444] (II) modeset(G0): EDID for output HDMI-1-1
[  2015.444] (II) modeset(G0): EDID for output DP-1-6
[  2015.572] (II) modeset(G0): EDID for output HDMI-1-2
[  2015.572] (II) modeset(G0): EDID for output DP-1-7
[  2015.700] (II) modeset(G0): EDID for output HDMI-1-3
[  2015.700] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[  2015.700] (==) modeset(G0): DPI set to (96, 96)
[  2015.700] (II) Loading sub module "fb"
[  2015.700] (II) LoadModule: "fb"
[  2015.700] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[  2015.700] (II) Module fb: vendor="X.Org Foundation"
[  2015.700] 	compiled for 1.19.99.1, module version = 1.0.0
[  2015.700] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  2015.700] (==) Depth 24 pixmap format is 32 bpp
[  2015.761] (==) modeset(G0): Backing store enabled
[  2015.761] (==) modeset(G0): Silken mouse enabled
[  2015.761] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2015.761] (==) modeset(G0): DPMS enabled
[  2015.761] (II) modeset(G0): [DRI2] Setup complete
[  2015.761] (II) modeset(G0): [DRI2]   DRI driver: i965
[  2015.761] (II) modeset(G0): [DRI2]   VDPAU driver: i965
[  2015.823] (==) modeset(0): Backing store enabled
[  2015.823] (==) modeset(0): Silken mouse enabled
[  2015.823] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2015.823] (==) modeset(0): DPMS enabled
[  2015.823] (WW) modeset(0): Option "PrimaryGPU" is not used
[  2015.823] (II) modeset(0): [DRI2] Setup complete
[  2015.823] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[  2015.823] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[  2015.823] (--) RandR disabled
[  2015.824] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  2015.824] (II) AIGLX: enabled GLX_ARB_create_context
[  2015.824] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  2015.824] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[  2015.824] (II) AIGLX: enabled GLX_INTEL_swap_event
[  2015.824] (II) AIGLX: enabled GLX_SGI_swap_control
[  2015.824] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  2015.824] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  2015.824] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[  2015.824] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  2015.824] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  2015.825] (II) AIGLX: Loaded and initialized radeonsi
[  2015.825] (II) GLX: Initialized DRI2 GL provider for screen 0
[  2016.123] (II) modeset(G0): Damage tracking initialized
[  2016.132] (II) modeset(0): Damage tracking initialized
[  2016.172] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  2016.172] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2016.172] (II) LoadModule: "evdev"
[  2016.172] (II) Loading /usr/local/lib/xorg/modules/input/evdev_drv.so
[  2016.173] (II) Module evdev: vendor="X.Org Foundation"
[  2016.173] 	compiled for 1.19.99.1, module version = 2.10.1
[  2016.173] 	Module class: X.Org XInput Driver
[  2016.173] 	ABI class: X.Org XInput driver, version 24.1
[  2016.173] (II) Using input driver 'evdev' for 'Power Button'
[  2016.173] (**) Power Button: always reports core events
[  2016.173] (**) evdev: Power Button: Device: "/dev/input/event3"
[  2016.173] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2016.173] (--) evdev: Power Button: Found keys
[  2016.173] (II) evdev: Power Button: Configuring as keyboard
[  2016.173] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[  2016.173] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  2016.173] (**) Option "xkb_rules" "evdev"
[  2016.173] (**) Option "xkb_model" "pc105"
[  2016.173] (**) Option "xkb_layout" "us"
[  2016.173] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[  2016.173] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2016.173] (II) Using input driver 'evdev' for 'Video Bus'
[  2016.173] (**) Video Bus: always reports core events
[  2016.173] (**) evdev: Video Bus: Device: "/dev/input/event5"
[  2016.173] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2016.173] (--) evdev: Video Bus: Found keys
[  2016.173] (II) evdev: Video Bus: Configuring as keyboard
[  2016.173] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
[  2016.173] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[  2016.173] (**) Option "xkb_rules" "evdev"
[  2016.173] (**) Option "xkb_model" "pc105"
[  2016.173] (**) Option "xkb_layout" "us"
[  2016.173] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[  2016.173] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2016.173] (II) Using input driver 'evdev' for 'Video Bus'
[  2016.173] (**) Video Bus: always reports core events
[  2016.173] (**) evdev: Video Bus: Device: "/dev/input/event6"
[  2016.173] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2016.173] (--) evdev: Video Bus: Found keys
[  2016.173] (II) evdev: Video Bus: Configuring as keyboard
[  2016.173] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input6/event6"
[  2016.173] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[  2016.173] (**) Option "xkb_rules" "evdev"
[  2016.173] (**) Option "xkb_model" "pc105"
[  2016.173] (**) Option "xkb_layout" "us"
[  2016.174] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2016.174] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2016.174] (II) Using input driver 'evdev' for 'Power Button'
[  2016.174] (**) Power Button: always reports core events
[  2016.174] (**) evdev: Power Button: Device: "/dev/input/event1"
[  2016.174] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2016.174] (--) evdev: Power Button: Found keys
[  2016.174] (II) evdev: Power Button: Configuring as keyboard
[  2016.174] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2016.174] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[  2016.174] (**) Option "xkb_rules" "evdev"
[  2016.174] (**) Option "xkb_model" "pc105"
[  2016.174] (**) Option "xkb_layout" "us"
[  2016.174] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  2016.174] (II) No input driver specified, ignoring this device.
[  2016.174] (II) This device may have been added with another device file.
[  2016.174] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[  2016.174] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[  2016.174] (II) Using input driver 'evdev' for 'Sleep Button'
[  2016.174] (**) Sleep Button: always reports core events
[  2016.174] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[  2016.174] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[  2016.174] (--) evdev: Sleep Button: Found keys
[  2016.174] (II) evdev: Sleep Button: Configuring as keyboard
[  2016.174] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[  2016.174] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[  2016.174] (**) Option "xkb_rules" "evdev"
[  2016.174] (**) Option "xkb_model" "pc105"
[  2016.174] (**) Option "xkb_layout" "us"
[  2016.174] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[  2016.174] (II) No input driver specified, ignoring this device.
[  2016.174] (II) This device may have been added with another device file.
[  2016.175] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[  2016.175] (II) No input driver specified, ignoring this device.
[  2016.175] (II) This device may have been added with another device file.
[  2016.175] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[  2016.175] (II) No input driver specified, ignoring this device.
[  2016.175] (II) This device may have been added with another device file.
[  2016.175] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[  2016.175] (II) No input driver specified, ignoring this device.
[  2016.175] (II) This device may have been added with another device file.
[  2016.175] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[  2016.175] (II) No input driver specified, ignoring this device.
[  2016.175] (II) This device may have been added with another device file.
[  2016.175] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event22)
[  2016.175] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[  2016.175] (II) Using input driver 'evdev' for 'Integrated Webcam'
[  2016.175] (**) Integrated Webcam: always reports core events
[  2016.175] (**) evdev: Integrated Webcam: Device: "/dev/input/event22"
[  2016.175] (--) evdev: Integrated Webcam: Vendor 0xbda Product 0x5632
[  2016.175] (--) evdev: Integrated Webcam: Found keys
[  2016.175] (II) evdev: Integrated Webcam: Configuring as keyboard
[  2016.175] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input22/event22"
[  2016.175] (II) XINPUT: Adding extended input device "Integrated Webcam" (type: KEYBOARD, id 11)
[  2016.175] (**) Option "xkb_rules" "evdev"
[  2016.175] (**) Option "xkb_model" "pc105"
[  2016.175] (**) Option "xkb_layout" "us"
[  2016.176] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/event15)
[  2016.176] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchpad catchall"
[  2016.176] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchscreen catchall"
[  2016.176] (II) Using input driver 'evdev' for 'DLL07B0:01 044E:120B'
[  2016.176] (**) DLL07B0:01 044E:120B: always reports core events
[  2016.176] (**) evdev: DLL07B0:01 044E:120B: Device: "/dev/input/event15"
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Vendor 0x44e Product 0x120b
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Found 3 mouse buttons
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Found absolute axes
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Found absolute multitouch axes
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Found x and y absolute axes
[  2016.176] (--) evdev: DLL07B0:01 044E:120B: Found absolute touchpad.
[  2016.176] (II) evdev: DLL07B0:01 044E:120B: Configuring as touchpad
[  2016.176] (**) evdev: DLL07B0:01 044E:120B: YAxisMapping: buttons 4 and 5
[  2016.176] (**) evdev: DLL07B0:01 044E:120B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2016.176] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input14/event15"
[  2016.176] (II) XINPUT: Adding extended input device "DLL07B0:01 044E:120B" (type: TOUCHPAD, id 12)
[  2016.176] (II) evdev: DLL07B0:01 044E:120B: initialized for absolute axes.
[  2016.177] (**) DLL07B0:01 044E:120B: (accel) keeping acceleration scheme 1
[  2016.177] (**) DLL07B0:01 044E:120B: (accel) acceleration profile 0
[  2016.177] (**) DLL07B0:01 044E:120B: (accel) acceleration factor: 2.000
[  2016.177] (**) DLL07B0:01 044E:120B: (accel) acceleration threshold: 4
[  2016.177] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/mouse1)
[  2016.177] (II) No input driver specified, ignoring this device.
[  2016.177] (II) This device may have been added with another device file.
[  2016.177] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event14)
[  2016.177] (**) DualPoint Stick: Applying InputClass "evdev pointer catchall"
[  2016.177] (II) Using input driver 'evdev' for 'DualPoint Stick'
[  2016.177] (**) DualPoint Stick: always reports core events
[  2016.177] (**) evdev: DualPoint Stick: Device: "/dev/input/event14"
[  2016.177] (--) evdev: DualPoint Stick: Vendor 0x44e Product 0x120b
[  2016.177] (--) evdev: DualPoint Stick: Found 3 mouse buttons
[  2016.177] (--) evdev: DualPoint Stick: Found relative axes
[  2016.177] (--) evdev: DualPoint Stick: Found x and y relative axes
[  2016.177] (II) evdev: DualPoint Stick: Configuring as mouse
[  2016.177] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
[  2016.177] (**) evdev: DualPoint Stick: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2016.177] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input15/event14"
[  2016.177] (II) XINPUT: Adding extended input device "DualPoint Stick" (type: MOUSE, id 13)
[  2016.177] (II) evdev: DualPoint Stick: initialized for relative axes.
[  2016.177] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
[  2016.177] (**) DualPoint Stick: (accel) acceleration profile 0
[  2016.177] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[  2016.177] (**) DualPoint Stick: (accel) acceleration threshold: 4
[  2016.177] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse0)
[  2016.177] (II) No input driver specified, ignoring this device.
[  2016.177] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event17)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event18)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[  2016.178] (II) No input driver specified, ignoring this device.
[  2016.178] (II) This device may have been added with another device file.
[  2016.178] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[  2016.178] (**) Intel HID events: Applying InputClass "evdev keyboard catchall"
[  2016.178] (II) Using input driver 'evdev' for 'Intel HID events'
[  2016.178] (**) Intel HID events: always reports core events
[  2016.178] (**) evdev: Intel HID events: Device: "/dev/input/event7"
[  2016.178] (--) evdev: Intel HID events: Vendor 0 Product 0
[  2016.178] (--) evdev: Intel HID events: Found keys
[  2016.178] (II) evdev: Intel HID events: Configuring as keyboard
[  2016.178] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input7/event7"
[  2016.178] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 14)
[  2016.178] (**) Option "xkb_rules" "evdev"
[  2016.178] (**) Option "xkb_model" "pc105"
[  2016.178] (**) Option "xkb_layout" "us"
[  2016.179] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  2016.179] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  2016.179] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  2016.179] (**) AT Translated Set 2 keyboard: always reports core events
[  2016.179] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  2016.179] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  2016.179] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  2016.179] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  2016.179] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  2016.179] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[  2016.179] (**) Option "xkb_rules" "evdev"
[  2016.179] (**) Option "xkb_model" "pc105"
[  2016.179] (**) Option "xkb_layout" "us"
[  2016.180] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
[  2016.180] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  2016.180] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  2016.180] (**) Dell WMI hotkeys: always reports core events
[  2016.180] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
[  2016.180] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  2016.180] (--) evdev: Dell WMI hotkeys: Found keys
[  2016.180] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  2016.180] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[  2016.180] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 16)
[  2016.180] (**) Option "xkb_rules" "evdev"
[  2016.180] (**) Option "xkb_model" "pc105"
[  2016.180] (**) Option "xkb_layout" "us"
[  2202.796] (II) evdev: Dell WMI hotkeys: Close
[  2202.796] (II) UnloadModule: "evdev"
[  2202.796] (II) evdev: AT Translated Set 2 keyboard: Close
[  2202.796] (II) UnloadModule: "evdev"
[  2202.796] (II) evdev: Intel HID events: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: DualPoint Stick: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: DLL07B0:01 044E:120B: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Integrated Webcam: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Sleep Button: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Power Button: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Video Bus: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Video Bus: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.797] (II) evdev: Power Button: Close
[  2202.797] (II) UnloadModule: "evdev"
[  2202.798] (II) Open ACPI successful (/var/run/acpid.socket)
[  2202.798] (II) APM registered successfully
[  2202.855] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2202.855] (==) modeset(G0): DPMS enabled
[  2202.855] (II) modeset(G0): [DRI2] Setup complete
[  2202.855] (II) modeset(G0): [DRI2]   DRI driver: i965
[  2202.855] (II) modeset(G0): [DRI2]   VDPAU driver: i965
[  2202.873] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2202.873] (==) modeset(0): DPMS enabled
[  2202.873] (II) modeset(0): [DRI2] Setup complete
[  2202.873] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[  2202.873] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[  2202.873] (--) RandR disabled
[  2202.874] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  2202.874] (II) AIGLX: enabled GLX_ARB_create_context
[  2202.874] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  2202.874] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[  2202.874] (II) AIGLX: enabled GLX_INTEL_swap_event
[  2202.874] (II) AIGLX: enabled GLX_SGI_swap_control
[  2202.874] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  2202.874] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  2202.874] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[  2202.874] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  2202.874] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  2202.875] (II) AIGLX: Loaded and initialized radeonsi
[  2202.875] (II) GLX: Initialized DRI2 GL provider for screen 0
[  2202.875] (II) modeset(G0): Damage tracking initialized
[  2202.875] (II) modeset(0): Damage tracking initialized
[  2202.895] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  2202.895] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2202.895] (II) Using input driver 'evdev' for 'Power Button'
[  2202.895] (**) Power Button: always reports core events
[  2202.895] (**) evdev: Power Button: Device: "/dev/input/event3"
[  2202.895] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2202.895] (--) evdev: Power Button: Found keys
[  2202.895] (II) evdev: Power Button: Configuring as keyboard
[  2202.895] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[  2202.895] (**) Option "xkb_rules" "evdev"
[  2202.895] (**) Option "xkb_model" "pc105"
[  2202.895] (**) Option "xkb_layout" "us"
[  2202.895] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[  2202.895] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2202.895] (II) Using input driver 'evdev' for 'Video Bus'
[  2202.895] (**) Video Bus: always reports core events
[  2202.895] (**) evdev: Video Bus: Device: "/dev/input/event5"
[  2202.895] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2202.895] (--) evdev: Video Bus: Found keys
[  2202.895] (II) evdev: Video Bus: Configuring as keyboard
[  2202.895] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
[  2202.895] (**) Option "xkb_rules" "evdev"
[  2202.895] (**) Option "xkb_model" "pc105"
[  2202.895] (**) Option "xkb_layout" "us"
[  2202.895] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[  2202.895] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2202.895] (II) Using input driver 'evdev' for 'Video Bus'
[  2202.895] (**) Video Bus: always reports core events
[  2202.895] (**) evdev: Video Bus: Device: "/dev/input/event6"
[  2202.895] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2202.895] (--) evdev: Video Bus: Found keys
[  2202.895] (II) evdev: Video Bus: Configuring as keyboard
[  2202.895] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input6/event6"
[  2202.895] (**) Option "xkb_rules" "evdev"
[  2202.895] (**) Option "xkb_model" "pc105"
[  2202.895] (**) Option "xkb_layout" "us"
[  2202.896] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2202.896] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2202.896] (II) Using input driver 'evdev' for 'Power Button'
[  2202.896] (**) Power Button: always reports core events
[  2202.896] (**) evdev: Power Button: Device: "/dev/input/event1"
[  2202.896] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2202.896] (--) evdev: Power Button: Found keys
[  2202.896] (II) evdev: Power Button: Configuring as keyboard
[  2202.896] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2202.896] (**) Option "xkb_rules" "evdev"
[  2202.896] (**) Option "xkb_model" "pc105"
[  2202.896] (**) Option "xkb_layout" "us"
[  2202.896] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  2202.896] (II) No input driver specified, ignoring this device.
[  2202.896] (II) This device may have been added with another device file.
[  2202.896] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[  2202.896] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[  2202.896] (II) Using input driver 'evdev' for 'Sleep Button'
[  2202.896] (**) Sleep Button: always reports core events
[  2202.896] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[  2202.896] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[  2202.896] (--) evdev: Sleep Button: Found keys
[  2202.896] (II) evdev: Sleep Button: Configuring as keyboard
[  2202.896] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[  2202.896] (**) Option "xkb_rules" "evdev"
[  2202.896] (**) Option "xkb_model" "pc105"
[  2202.896] (**) Option "xkb_layout" "us"
[  2202.897] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[  2202.897] (II) No input driver specified, ignoring this device.
[  2202.897] (II) This device may have been added with another device file.
[  2202.897] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[  2202.897] (II) No input driver specified, ignoring this device.
[  2202.897] (II) This device may have been added with another device file.
[  2202.897] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[  2202.897] (II) No input driver specified, ignoring this device.
[  2202.897] (II) This device may have been added with another device file.
[  2202.897] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[  2202.897] (II) No input driver specified, ignoring this device.
[  2202.897] (II) This device may have been added with another device file.
[  2202.897] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[  2202.897] (II) No input driver specified, ignoring this device.
[  2202.897] (II) This device may have been added with another device file.
[  2202.897] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event22)
[  2202.898] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[  2202.898] (II) Using input driver 'evdev' for 'Integrated Webcam'
[  2202.898] (**) Integrated Webcam: always reports core events
[  2202.898] (**) evdev: Integrated Webcam: Device: "/dev/input/event22"
[  2202.898] (--) evdev: Integrated Webcam: Vendor 0xbda Product 0x5632
[  2202.898] (--) evdev: Integrated Webcam: Found keys
[  2202.898] (II) evdev: Integrated Webcam: Configuring as keyboard
[  2202.898] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input22/event22"
[  2202.898] (**) Option "xkb_rules" "evdev"
[  2202.898] (**) Option "xkb_model" "pc105"
[  2202.898] (**) Option "xkb_layout" "us"
[  2202.898] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/event15)
[  2202.898] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchpad catchall"
[  2202.898] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchscreen catchall"
[  2202.898] (II) Using input driver 'evdev' for 'DLL07B0:01 044E:120B'
[  2202.898] (**) DLL07B0:01 044E:120B: always reports core events
[  2202.898] (**) evdev: DLL07B0:01 044E:120B: Device: "/dev/input/event15"
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Vendor 0x44e Product 0x120b
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Found 3 mouse buttons
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Found absolute axes
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Found absolute multitouch axes
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Found x and y absolute axes
[  2202.898] (--) evdev: DLL07B0:01 044E:120B: Found absolute touchpad.
[  2202.898] (II) evdev: DLL07B0:01 044E:120B: Configuring as touchpad
[  2202.898] (**) evdev: DLL07B0:01 044E:120B: YAxisMapping: buttons 4 and 5
[  2202.898] (**) evdev: DLL07B0:01 044E:120B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2202.898] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input14/event15"
[  2202.899] (II) evdev: DLL07B0:01 044E:120B: initialized for absolute axes.
[  2202.899] (**) DLL07B0:01 044E:120B: (accel) keeping acceleration scheme 1
[  2202.899] (**) DLL07B0:01 044E:120B: (accel) acceleration profile 0
[  2202.899] (**) DLL07B0:01 044E:120B: (accel) acceleration factor: 2.000
[  2202.899] (**) DLL07B0:01 044E:120B: (accel) acceleration threshold: 4
[  2202.899] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/mouse1)
[  2202.899] (II) No input driver specified, ignoring this device.
[  2202.899] (II) This device may have been added with another device file.
[  2202.899] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event14)
[  2202.899] (**) DualPoint Stick: Applying InputClass "evdev pointer catchall"
[  2202.899] (II) Using input driver 'evdev' for 'DualPoint Stick'
[  2202.899] (**) DualPoint Stick: always reports core events
[  2202.899] (**) evdev: DualPoint Stick: Device: "/dev/input/event14"
[  2202.899] (--) evdev: DualPoint Stick: Vendor 0x44e Product 0x120b
[  2202.899] (--) evdev: DualPoint Stick: Found 3 mouse buttons
[  2202.899] (--) evdev: DualPoint Stick: Found relative axes
[  2202.899] (--) evdev: DualPoint Stick: Found x and y relative axes
[  2202.899] (II) evdev: DualPoint Stick: Configuring as mouse
[  2202.899] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
[  2202.899] (**) evdev: DualPoint Stick: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2202.899] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input15/event14"
[  2202.899] (II) evdev: DualPoint Stick: initialized for relative axes.
[  2202.899] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
[  2202.899] (**) DualPoint Stick: (accel) acceleration profile 0
[  2202.899] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[  2202.899] (**) DualPoint Stick: (accel) acceleration threshold: 4
[  2202.899] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse0)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event17)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event18)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.900] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[  2202.900] (II) No input driver specified, ignoring this device.
[  2202.900] (II) This device may have been added with another device file.
[  2202.901] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[  2202.901] (**) Intel HID events: Applying InputClass "evdev keyboard catchall"
[  2202.901] (II) Using input driver 'evdev' for 'Intel HID events'
[  2202.901] (**) Intel HID events: always reports core events
[  2202.901] (**) evdev: Intel HID events: Device: "/dev/input/event7"
[  2202.901] (--) evdev: Intel HID events: Vendor 0 Product 0
[  2202.901] (--) evdev: Intel HID events: Found keys
[  2202.901] (II) evdev: Intel HID events: Configuring as keyboard
[  2202.901] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input7/event7"
[  2202.901] (**) Option "xkb_rules" "evdev"
[  2202.901] (**) Option "xkb_model" "pc105"
[  2202.901] (**) Option "xkb_layout" "us"
[  2202.901] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  2202.901] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  2202.901] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  2202.901] (**) AT Translated Set 2 keyboard: always reports core events
[  2202.901] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  2202.901] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  2202.901] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  2202.901] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  2202.901] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  2202.901] (**) Option "xkb_rules" "evdev"
[  2202.901] (**) Option "xkb_model" "pc105"
[  2202.901] (**) Option "xkb_layout" "us"
[  2202.902] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
[  2202.902] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  2202.902] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  2202.902] (**) Dell WMI hotkeys: always reports core events
[  2202.902] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
[  2202.902] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  2202.902] (--) evdev: Dell WMI hotkeys: Found keys
[  2202.902] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  2202.902] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[  2202.902] (**) Option "xkb_rules" "evdev"
[  2202.902] (**) Option "xkb_model" "pc105"
[  2202.902] (**) Option "xkb_layout" "us"
[  2208.616] (II) evdev: Dell WMI hotkeys: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: AT Translated Set 2 keyboard: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Intel HID events: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: DualPoint Stick: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: DLL07B0:01 044E:120B: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Integrated Webcam: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Sleep Button: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Power Button: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Video Bus: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Video Bus: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.616] (II) evdev: Power Button: Close
[  2208.616] (II) UnloadModule: "evdev"
[  2208.617] (II) Open ACPI successful (/var/run/acpid.socket)
[  2208.617] (II) APM registered successfully
[  2208.637] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2208.637] (==) modeset(G0): DPMS enabled
[  2208.638] (II) modeset(G0): [DRI2] Setup complete
[  2208.638] (II) modeset(G0): [DRI2]   DRI driver: i965
[  2208.638] (II) modeset(G0): [DRI2]   VDPAU driver: i965
[  2208.656] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2208.656] (==) modeset(0): DPMS enabled
[  2208.656] (II) modeset(0): [DRI2] Setup complete
[  2208.656] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[  2208.656] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[  2208.656] (--) RandR disabled
[  2208.657] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  2208.657] (II) AIGLX: enabled GLX_ARB_create_context
[  2208.657] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  2208.657] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[  2208.657] (II) AIGLX: enabled GLX_INTEL_swap_event
[  2208.657] (II) AIGLX: enabled GLX_SGI_swap_control
[  2208.657] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  2208.657] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  2208.657] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[  2208.657] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  2208.657] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  2208.658] (II) AIGLX: Loaded and initialized radeonsi
[  2208.658] (II) GLX: Initialized DRI2 GL provider for screen 0
[  2208.658] (II) modeset(G0): Damage tracking initialized
[  2208.658] (II) modeset(0): Damage tracking initialized
[  2208.677] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  2208.677] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2208.677] (II) Using input driver 'evdev' for 'Power Button'
[  2208.677] (**) Power Button: always reports core events
[  2208.677] (**) evdev: Power Button: Device: "/dev/input/event3"
[  2208.677] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2208.677] (--) evdev: Power Button: Found keys
[  2208.677] (II) evdev: Power Button: Configuring as keyboard
[  2208.677] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[  2208.677] (**) Option "xkb_rules" "evdev"
[  2208.677] (**) Option "xkb_model" "pc105"
[  2208.677] (**) Option "xkb_layout" "us"
[  2208.677] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[  2208.677] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2208.677] (II) Using input driver 'evdev' for 'Video Bus'
[  2208.677] (**) Video Bus: always reports core events
[  2208.677] (**) evdev: Video Bus: Device: "/dev/input/event5"
[  2208.678] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2208.678] (--) evdev: Video Bus: Found keys
[  2208.678] (II) evdev: Video Bus: Configuring as keyboard
[  2208.678] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
[  2208.678] (**) Option "xkb_rules" "evdev"
[  2208.678] (**) Option "xkb_model" "pc105"
[  2208.678] (**) Option "xkb_layout" "us"
[  2208.678] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[  2208.678] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2208.678] (II) Using input driver 'evdev' for 'Video Bus'
[  2208.678] (**) Video Bus: always reports core events
[  2208.678] (**) evdev: Video Bus: Device: "/dev/input/event6"
[  2208.678] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2208.678] (--) evdev: Video Bus: Found keys
[  2208.678] (II) evdev: Video Bus: Configuring as keyboard
[  2208.678] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input6/event6"
[  2208.678] (**) Option "xkb_rules" "evdev"
[  2208.678] (**) Option "xkb_model" "pc105"
[  2208.678] (**) Option "xkb_layout" "us"
[  2208.678] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2208.678] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2208.678] (II) Using input driver 'evdev' for 'Power Button'
[  2208.678] (**) Power Button: always reports core events
[  2208.678] (**) evdev: Power Button: Device: "/dev/input/event1"
[  2208.678] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2208.678] (--) evdev: Power Button: Found keys
[  2208.678] (II) evdev: Power Button: Configuring as keyboard
[  2208.678] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2208.678] (**) Option "xkb_rules" "evdev"
[  2208.678] (**) Option "xkb_model" "pc105"
[  2208.678] (**) Option "xkb_layout" "us"
[  2208.678] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  2208.678] (II) No input driver specified, ignoring this device.
[  2208.678] (II) This device may have been added with another device file.
[  2208.679] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[  2208.679] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[  2208.679] (II) Using input driver 'evdev' for 'Sleep Button'
[  2208.679] (**) Sleep Button: always reports core events
[  2208.679] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[  2208.679] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[  2208.679] (--) evdev: Sleep Button: Found keys
[  2208.679] (II) evdev: Sleep Button: Configuring as keyboard
[  2208.679] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[  2208.679] (**) Option "xkb_rules" "evdev"
[  2208.679] (**) Option "xkb_model" "pc105"
[  2208.679] (**) Option "xkb_layout" "us"
[  2208.679] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[  2208.679] (II) No input driver specified, ignoring this device.
[  2208.679] (II) This device may have been added with another device file.
[  2208.679] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[  2208.679] (II) No input driver specified, ignoring this device.
[  2208.679] (II) This device may have been added with another device file.
[  2208.679] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[  2208.679] (II) No input driver specified, ignoring this device.
[  2208.679] (II) This device may have been added with another device file.
[  2208.679] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[  2208.679] (II) No input driver specified, ignoring this device.
[  2208.679] (II) This device may have been added with another device file.
[  2208.680] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[  2208.680] (II) No input driver specified, ignoring this device.
[  2208.680] (II) This device may have been added with another device file.
[  2208.680] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event22)
[  2208.680] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[  2208.680] (II) Using input driver 'evdev' for 'Integrated Webcam'
[  2208.680] (**) Integrated Webcam: always reports core events
[  2208.680] (**) evdev: Integrated Webcam: Device: "/dev/input/event22"
[  2208.680] (--) evdev: Integrated Webcam: Vendor 0xbda Product 0x5632
[  2208.680] (--) evdev: Integrated Webcam: Found keys
[  2208.680] (II) evdev: Integrated Webcam: Configuring as keyboard
[  2208.680] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input22/event22"
[  2208.680] (**) Option "xkb_rules" "evdev"
[  2208.680] (**) Option "xkb_model" "pc105"
[  2208.680] (**) Option "xkb_layout" "us"
[  2208.680] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/event15)
[  2208.680] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchpad catchall"
[  2208.680] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchscreen catchall"
[  2208.680] (II) Using input driver 'evdev' for 'DLL07B0:01 044E:120B'
[  2208.680] (**) DLL07B0:01 044E:120B: always reports core events
[  2208.680] (**) evdev: DLL07B0:01 044E:120B: Device: "/dev/input/event15"
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Vendor 0x44e Product 0x120b
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Found 3 mouse buttons
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Found absolute axes
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Found absolute multitouch axes
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Found x and y absolute axes
[  2208.681] (--) evdev: DLL07B0:01 044E:120B: Found absolute touchpad.
[  2208.681] (II) evdev: DLL07B0:01 044E:120B: Configuring as touchpad
[  2208.681] (**) evdev: DLL07B0:01 044E:120B: YAxisMapping: buttons 4 and 5
[  2208.681] (**) evdev: DLL07B0:01 044E:120B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2208.681] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input14/event15"
[  2208.681] (II) evdev: DLL07B0:01 044E:120B: initialized for absolute axes.
[  2208.681] (**) DLL07B0:01 044E:120B: (accel) keeping acceleration scheme 1
[  2208.681] (**) DLL07B0:01 044E:120B: (accel) acceleration profile 0
[  2208.681] (**) DLL07B0:01 044E:120B: (accel) acceleration factor: 2.000
[  2208.681] (**) DLL07B0:01 044E:120B: (accel) acceleration threshold: 4
[  2208.681] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/mouse1)
[  2208.681] (II) No input driver specified, ignoring this device.
[  2208.681] (II) This device may have been added with another device file.
[  2208.682] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event14)
[  2208.682] (**) DualPoint Stick: Applying InputClass "evdev pointer catchall"
[  2208.682] (II) Using input driver 'evdev' for 'DualPoint Stick'
[  2208.682] (**) DualPoint Stick: always reports core events
[  2208.682] (**) evdev: DualPoint Stick: Device: "/dev/input/event14"
[  2208.682] (--) evdev: DualPoint Stick: Vendor 0x44e Product 0x120b
[  2208.682] (--) evdev: DualPoint Stick: Found 3 mouse buttons
[  2208.682] (--) evdev: DualPoint Stick: Found relative axes
[  2208.682] (--) evdev: DualPoint Stick: Found x and y relative axes
[  2208.682] (II) evdev: DualPoint Stick: Configuring as mouse
[  2208.682] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
[  2208.682] (**) evdev: DualPoint Stick: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2208.682] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input15/event14"
[  2208.682] (II) evdev: DualPoint Stick: initialized for relative axes.
[  2208.682] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
[  2208.682] (**) DualPoint Stick: (accel) acceleration profile 0
[  2208.682] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[  2208.682] (**) DualPoint Stick: (accel) acceleration threshold: 4
[  2208.682] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse0)
[  2208.682] (II) No input driver specified, ignoring this device.
[  2208.682] (II) This device may have been added with another device file.
[  2208.682] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[  2208.682] (II) No input driver specified, ignoring this device.
[  2208.682] (II) This device may have been added with another device file.
[  2208.682] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event17)
[  2208.682] (II) No input driver specified, ignoring this device.
[  2208.682] (II) This device may have been added with another device file.
[  2208.682] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event18)
[  2208.682] (II) No input driver specified, ignoring this device.
[  2208.682] (II) This device may have been added with another device file.
[  2208.683] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[  2208.683] (II) No input driver specified, ignoring this device.
[  2208.683] (II) This device may have been added with another device file.
[  2208.683] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[  2208.683] (II) No input driver specified, ignoring this device.
[  2208.683] (II) This device may have been added with another device file.
[  2208.683] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[  2208.683] (II) No input driver specified, ignoring this device.
[  2208.683] (II) This device may have been added with another device file.
[  2208.683] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[  2208.683] (**) Intel HID events: Applying InputClass "evdev keyboard catchall"
[  2208.683] (II) Using input driver 'evdev' for 'Intel HID events'
[  2208.683] (**) Intel HID events: always reports core events
[  2208.683] (**) evdev: Intel HID events: Device: "/dev/input/event7"
[  2208.683] (--) evdev: Intel HID events: Vendor 0 Product 0
[  2208.683] (--) evdev: Intel HID events: Found keys
[  2208.683] (II) evdev: Intel HID events: Configuring as keyboard
[  2208.683] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input7/event7"
[  2208.683] (**) Option "xkb_rules" "evdev"
[  2208.683] (**) Option "xkb_model" "pc105"
[  2208.683] (**) Option "xkb_layout" "us"
[  2208.683] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  2208.683] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  2208.683] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  2208.683] (**) AT Translated Set 2 keyboard: always reports core events
[  2208.683] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  2208.683] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  2208.683] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  2208.683] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  2208.683] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  2208.683] (**) Option "xkb_rules" "evdev"
[  2208.683] (**) Option "xkb_model" "pc105"
[  2208.683] (**) Option "xkb_layout" "us"
[  2208.684] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
[  2208.684] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  2208.684] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  2208.684] (**) Dell WMI hotkeys: always reports core events
[  2208.684] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
[  2208.684] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  2208.684] (--) evdev: Dell WMI hotkeys: Found keys
[  2208.684] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  2208.684] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[  2208.684] (**) Option "xkb_rules" "evdev"
[  2208.684] (**) Option "xkb_model" "pc105"
[  2208.684] (**) Option "xkb_layout" "us"
[  2699.512] (II) evdev: Dell WMI hotkeys: Close
[  2699.512] (II) UnloadModule: "evdev"
[  2699.512] (II) evdev: AT Translated Set 2 keyboard: Close
[  2699.512] (II) UnloadModule: "evdev"
[  2699.512] (II) evdev: Intel HID events: Close
[  2699.512] (II) UnloadModule: "evdev"
[  2699.512] (II) evdev: DualPoint Stick: Close
[  2699.512] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: DLL07B0:01 044E:120B: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Integrated Webcam: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Sleep Button: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Power Button: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Video Bus: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Video Bus: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.513] (II) evdev: Power Button: Close
[  2699.513] (II) UnloadModule: "evdev"
[  2699.514] (II) Open ACPI successful (/var/run/acpid.socket)
[  2699.514] (II) APM registered successfully
[  2699.572] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2699.572] (==) modeset(G0): DPMS enabled
[  2699.572] (II) modeset(G0): [DRI2] Setup complete
[  2699.572] (II) modeset(G0): [DRI2]   DRI driver: i965
[  2699.572] (II) modeset(G0): [DRI2]   VDPAU driver: i965
[  2699.590] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2699.590] (==) modeset(0): DPMS enabled
[  2699.590] (II) modeset(0): [DRI2] Setup complete
[  2699.590] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[  2699.590] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[  2699.590] (--) RandR disabled
[  2699.591] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  2699.591] (II) AIGLX: enabled GLX_ARB_create_context
[  2699.591] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  2699.591] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[  2699.591] (II) AIGLX: enabled GLX_INTEL_swap_event
[  2699.591] (II) AIGLX: enabled GLX_SGI_swap_control
[  2699.591] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  2699.591] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  2699.591] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[  2699.591] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  2699.591] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  2699.591] (II) AIGLX: Loaded and initialized radeonsi
[  2699.591] (II) GLX: Initialized DRI2 GL provider for screen 0
[  2699.592] (II) modeset(G0): Damage tracking initialized
[  2699.592] (II) modeset(0): Damage tracking initialized
[  2699.611] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  2699.611] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2699.611] (II) Using input driver 'evdev' for 'Power Button'
[  2699.611] (**) Power Button: always reports core events
[  2699.611] (**) evdev: Power Button: Device: "/dev/input/event3"
[  2699.611] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2699.611] (--) evdev: Power Button: Found keys
[  2699.611] (II) evdev: Power Button: Configuring as keyboard
[  2699.611] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[  2699.611] (**) Option "xkb_rules" "evdev"
[  2699.611] (**) Option "xkb_model" "pc105"
[  2699.611] (**) Option "xkb_layout" "us"
[  2699.612] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[  2699.612] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2699.612] (II) Using input driver 'evdev' for 'Video Bus'
[  2699.612] (**) Video Bus: always reports core events
[  2699.612] (**) evdev: Video Bus: Device: "/dev/input/event5"
[  2699.612] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2699.612] (--) evdev: Video Bus: Found keys
[  2699.612] (II) evdev: Video Bus: Configuring as keyboard
[  2699.612] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
[  2699.612] (**) Option "xkb_rules" "evdev"
[  2699.612] (**) Option "xkb_model" "pc105"
[  2699.612] (**) Option "xkb_layout" "us"
[  2699.612] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[  2699.612] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2699.612] (II) Using input driver 'evdev' for 'Video Bus'
[  2699.612] (**) Video Bus: always reports core events
[  2699.612] (**) evdev: Video Bus: Device: "/dev/input/event6"
[  2699.612] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2699.612] (--) evdev: Video Bus: Found keys
[  2699.612] (II) evdev: Video Bus: Configuring as keyboard
[  2699.612] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input6/event6"
[  2699.612] (**) Option "xkb_rules" "evdev"
[  2699.612] (**) Option "xkb_model" "pc105"
[  2699.612] (**) Option "xkb_layout" "us"
[  2699.612] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2699.612] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2699.612] (II) Using input driver 'evdev' for 'Power Button'
[  2699.612] (**) Power Button: always reports core events
[  2699.612] (**) evdev: Power Button: Device: "/dev/input/event1"
[  2699.612] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2699.612] (--) evdev: Power Button: Found keys
[  2699.612] (II) evdev: Power Button: Configuring as keyboard
[  2699.612] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2699.612] (**) Option "xkb_rules" "evdev"
[  2699.612] (**) Option "xkb_model" "pc105"
[  2699.612] (**) Option "xkb_layout" "us"
[  2699.613] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  2699.613] (II) No input driver specified, ignoring this device.
[  2699.613] (II) This device may have been added with another device file.
[  2699.613] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[  2699.613] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[  2699.613] (II) Using input driver 'evdev' for 'Sleep Button'
[  2699.613] (**) Sleep Button: always reports core events
[  2699.613] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[  2699.613] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[  2699.613] (--) evdev: Sleep Button: Found keys
[  2699.613] (II) evdev: Sleep Button: Configuring as keyboard
[  2699.613] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[  2699.613] (**) Option "xkb_rules" "evdev"
[  2699.613] (**) Option "xkb_model" "pc105"
[  2699.613] (**) Option "xkb_layout" "us"
[  2699.613] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[  2699.613] (II) No input driver specified, ignoring this device.
[  2699.613] (II) This device may have been added with another device file.
[  2699.613] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[  2699.613] (II) No input driver specified, ignoring this device.
[  2699.613] (II) This device may have been added with another device file.
[  2699.613] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[  2699.613] (II) No input driver specified, ignoring this device.
[  2699.613] (II) This device may have been added with another device file.
[  2699.614] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[  2699.614] (II) No input driver specified, ignoring this device.
[  2699.614] (II) This device may have been added with another device file.
[  2699.614] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[  2699.614] (II) No input driver specified, ignoring this device.
[  2699.614] (II) This device may have been added with another device file.
[  2699.614] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event22)
[  2699.614] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[  2699.614] (II) Using input driver 'evdev' for 'Integrated Webcam'
[  2699.614] (**) Integrated Webcam: always reports core events
[  2699.614] (**) evdev: Integrated Webcam: Device: "/dev/input/event22"
[  2699.614] (--) evdev: Integrated Webcam: Vendor 0xbda Product 0x5632
[  2699.614] (--) evdev: Integrated Webcam: Found keys
[  2699.614] (II) evdev: Integrated Webcam: Configuring as keyboard
[  2699.614] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input22/event22"
[  2699.614] (**) Option "xkb_rules" "evdev"
[  2699.614] (**) Option "xkb_model" "pc105"
[  2699.614] (**) Option "xkb_layout" "us"
[  2699.614] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/event15)
[  2699.614] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchpad catchall"
[  2699.614] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchscreen catchall"
[  2699.614] (II) Using input driver 'evdev' for 'DLL07B0:01 044E:120B'
[  2699.614] (**) DLL07B0:01 044E:120B: always reports core events
[  2699.614] (**) evdev: DLL07B0:01 044E:120B: Device: "/dev/input/event15"
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Vendor 0x44e Product 0x120b
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Found 3 mouse buttons
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Found absolute axes
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Found absolute multitouch axes
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Found x and y absolute axes
[  2699.615] (--) evdev: DLL07B0:01 044E:120B: Found absolute touchpad.
[  2699.615] (II) evdev: DLL07B0:01 044E:120B: Configuring as touchpad
[  2699.615] (**) evdev: DLL07B0:01 044E:120B: YAxisMapping: buttons 4 and 5
[  2699.615] (**) evdev: DLL07B0:01 044E:120B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2699.615] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input14/event15"
[  2699.615] (II) evdev: DLL07B0:01 044E:120B: initialized for absolute axes.
[  2699.615] (**) DLL07B0:01 044E:120B: (accel) keeping acceleration scheme 1
[  2699.615] (**) DLL07B0:01 044E:120B: (accel) acceleration profile 0
[  2699.615] (**) DLL07B0:01 044E:120B: (accel) acceleration factor: 2.000
[  2699.615] (**) DLL07B0:01 044E:120B: (accel) acceleration threshold: 4
[  2699.615] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/mouse1)
[  2699.615] (II) No input driver specified, ignoring this device.
[  2699.615] (II) This device may have been added with another device file.
[  2699.616] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event14)
[  2699.616] (**) DualPoint Stick: Applying InputClass "evdev pointer catchall"
[  2699.616] (II) Using input driver 'evdev' for 'DualPoint Stick'
[  2699.616] (**) DualPoint Stick: always reports core events
[  2699.616] (**) evdev: DualPoint Stick: Device: "/dev/input/event14"
[  2699.616] (--) evdev: DualPoint Stick: Vendor 0x44e Product 0x120b
[  2699.616] (--) evdev: DualPoint Stick: Found 3 mouse buttons
[  2699.616] (--) evdev: DualPoint Stick: Found relative axes
[  2699.616] (--) evdev: DualPoint Stick: Found x and y relative axes
[  2699.616] (II) evdev: DualPoint Stick: Configuring as mouse
[  2699.616] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
[  2699.616] (**) evdev: DualPoint Stick: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2699.616] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input15/event14"
[  2699.616] (II) evdev: DualPoint Stick: initialized for relative axes.
[  2699.616] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
[  2699.616] (**) DualPoint Stick: (accel) acceleration profile 0
[  2699.616] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[  2699.616] (**) DualPoint Stick: (accel) acceleration threshold: 4
[  2699.616] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse0)
[  2699.616] (II) No input driver specified, ignoring this device.
[  2699.616] (II) This device may have been added with another device file.
[  2699.616] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[  2699.616] (II) No input driver specified, ignoring this device.
[  2699.616] (II) This device may have been added with another device file.
[  2699.616] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event17)
[  2699.616] (II) No input driver specified, ignoring this device.
[  2699.616] (II) This device may have been added with another device file.
[  2699.616] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event18)
[  2699.616] (II) No input driver specified, ignoring this device.
[  2699.616] (II) This device may have been added with another device file.
[  2699.617] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[  2699.617] (II) No input driver specified, ignoring this device.
[  2699.617] (II) This device may have been added with another device file.
[  2699.617] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[  2699.617] (II) No input driver specified, ignoring this device.
[  2699.617] (II) This device may have been added with another device file.
[  2699.617] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[  2699.617] (II) No input driver specified, ignoring this device.
[  2699.617] (II) This device may have been added with another device file.
[  2699.617] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[  2699.617] (**) Intel HID events: Applying InputClass "evdev keyboard catchall"
[  2699.617] (II) Using input driver 'evdev' for 'Intel HID events'
[  2699.617] (**) Intel HID events: always reports core events
[  2699.617] (**) evdev: Intel HID events: Device: "/dev/input/event7"
[  2699.617] (--) evdev: Intel HID events: Vendor 0 Product 0
[  2699.617] (--) evdev: Intel HID events: Found keys
[  2699.617] (II) evdev: Intel HID events: Configuring as keyboard
[  2699.617] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input7/event7"
[  2699.617] (**) Option "xkb_rules" "evdev"
[  2699.617] (**) Option "xkb_model" "pc105"
[  2699.617] (**) Option "xkb_layout" "us"
[  2699.617] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  2699.617] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  2699.617] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  2699.617] (**) AT Translated Set 2 keyboard: always reports core events
[  2699.617] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  2699.617] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  2699.617] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  2699.617] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  2699.617] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  2699.617] (**) Option "xkb_rules" "evdev"
[  2699.617] (**) Option "xkb_model" "pc105"
[  2699.617] (**) Option "xkb_layout" "us"
[  2699.618] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
[  2699.618] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  2699.618] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  2699.618] (**) Dell WMI hotkeys: always reports core events
[  2699.618] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
[  2699.618] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  2699.618] (--) evdev: Dell WMI hotkeys: Found keys
[  2699.618] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  2699.618] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[  2699.618] (**) Option "xkb_rules" "evdev"
[  2699.618] (**) Option "xkb_model" "pc105"
[  2699.618] (**) Option "xkb_layout" "us"
[  2705.908] (II) evdev: Dell WMI hotkeys: Close
[  2705.908] (II) UnloadModule: "evdev"
[  2705.908] (II) evdev: AT Translated Set 2 keyboard: Close
[  2705.908] (II) UnloadModule: "evdev"
[  2705.908] (II) evdev: Intel HID events: Close
[  2705.908] (II) UnloadModule: "evdev"
[  2705.908] (II) evdev: DualPoint Stick: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: DLL07B0:01 044E:120B: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Integrated Webcam: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Sleep Button: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Power Button: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Video Bus: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Video Bus: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.909] (II) evdev: Power Button: Close
[  2705.909] (II) UnloadModule: "evdev"
[  2705.910] (II) Open ACPI successful (/var/run/acpid.socket)
[  2705.910] (II) APM registered successfully
[  2705.934] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2705.934] (==) modeset(G0): DPMS enabled
[  2705.934] (II) modeset(G0): [DRI2] Setup complete
[  2705.934] (II) modeset(G0): [DRI2]   DRI driver: i965
[  2705.934] (II) modeset(G0): [DRI2]   VDPAU driver: i965
[  2705.952] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  2705.953] (==) modeset(0): DPMS enabled
[  2705.953] (II) modeset(0): [DRI2] Setup complete
[  2705.953] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[  2705.953] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[  2705.953] (--) RandR disabled
[  2705.954] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  2705.954] (II) AIGLX: enabled GLX_ARB_create_context
[  2705.954] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  2705.954] (II) AIGLX: enabled GLX_EXT_create_context_es{,2}_profile
[  2705.954] (II) AIGLX: enabled GLX_INTEL_swap_event
[  2705.954] (II) AIGLX: enabled GLX_SGI_swap_control
[  2705.954] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  2705.954] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  2705.954] (II) AIGLX: enabled GLX_EXT_fbconfig_packed_float
[  2705.954] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  2705.954] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  2705.954] (II) AIGLX: Loaded and initialized radeonsi
[  2705.954] (II) GLX: Initialized DRI2 GL provider for screen 0
[  2705.954] (II) modeset(G0): Damage tracking initialized
[  2705.955] (II) modeset(0): Damage tracking initialized
[  2705.974] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  2705.974] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2705.974] (II) Using input driver 'evdev' for 'Power Button'
[  2705.974] (**) Power Button: always reports core events
[  2705.974] (**) evdev: Power Button: Device: "/dev/input/event3"
[  2705.974] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2705.974] (--) evdev: Power Button: Found keys
[  2705.974] (II) evdev: Power Button: Configuring as keyboard
[  2705.974] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[  2705.974] (**) Option "xkb_rules" "evdev"
[  2705.974] (**) Option "xkb_model" "pc105"
[  2705.974] (**) Option "xkb_layout" "us"
[  2705.974] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[  2705.974] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2705.974] (II) Using input driver 'evdev' for 'Video Bus'
[  2705.974] (**) Video Bus: always reports core events
[  2705.974] (**) evdev: Video Bus: Device: "/dev/input/event5"
[  2705.974] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2705.974] (--) evdev: Video Bus: Found keys
[  2705.974] (II) evdev: Video Bus: Configuring as keyboard
[  2705.974] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5/event5"
[  2705.974] (**) Option "xkb_rules" "evdev"
[  2705.974] (**) Option "xkb_model" "pc105"
[  2705.974] (**) Option "xkb_layout" "us"
[  2705.975] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[  2705.975] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  2705.975] (II) Using input driver 'evdev' for 'Video Bus'
[  2705.975] (**) Video Bus: always reports core events
[  2705.975] (**) evdev: Video Bus: Device: "/dev/input/event6"
[  2705.975] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  2705.975] (--) evdev: Video Bus: Found keys
[  2705.975] (II) evdev: Video Bus: Configuring as keyboard
[  2705.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input6/event6"
[  2705.975] (**) Option "xkb_rules" "evdev"
[  2705.975] (**) Option "xkb_model" "pc105"
[  2705.975] (**) Option "xkb_layout" "us"
[  2705.975] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2705.975] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  2705.975] (II) Using input driver 'evdev' for 'Power Button'
[  2705.975] (**) Power Button: always reports core events
[  2705.975] (**) evdev: Power Button: Device: "/dev/input/event1"
[  2705.975] (--) evdev: Power Button: Vendor 0 Product 0x1
[  2705.975] (--) evdev: Power Button: Found keys
[  2705.975] (II) evdev: Power Button: Configuring as keyboard
[  2705.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2705.975] (**) Option "xkb_rules" "evdev"
[  2705.975] (**) Option "xkb_model" "pc105"
[  2705.975] (**) Option "xkb_layout" "us"
[  2705.975] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  2705.975] (II) No input driver specified, ignoring this device.
[  2705.975] (II) This device may have been added with another device file.
[  2705.975] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[  2705.975] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[  2705.975] (II) Using input driver 'evdev' for 'Sleep Button'
[  2705.975] (**) Sleep Button: always reports core events
[  2705.975] (**) evdev: Sleep Button: Device: "/dev/input/event2"
[  2705.975] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[  2705.975] (--) evdev: Sleep Button: Found keys
[  2705.975] (II) evdev: Sleep Button: Configuring as keyboard
[  2705.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[  2705.975] (**) Option "xkb_rules" "evdev"
[  2705.975] (**) Option "xkb_model" "pc105"
[  2705.975] (**) Option "xkb_layout" "us"
[  2705.976] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event10)
[  2705.976] (II) No input driver specified, ignoring this device.
[  2705.976] (II) This device may have been added with another device file.
[  2705.976] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event11)
[  2705.976] (II) No input driver specified, ignoring this device.
[  2705.976] (II) This device may have been added with another device file.
[  2705.976] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event12)
[  2705.976] (II) No input driver specified, ignoring this device.
[  2705.976] (II) This device may have been added with another device file.
[  2705.976] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event13)
[  2705.976] (II) No input driver specified, ignoring this device.
[  2705.976] (II) This device may have been added with another device file.
[  2705.976] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event9)
[  2705.976] (II) No input driver specified, ignoring this device.
[  2705.976] (II) This device may have been added with another device file.
[  2705.977] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event22)
[  2705.977] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[  2705.977] (II) Using input driver 'evdev' for 'Integrated Webcam'
[  2705.977] (**) Integrated Webcam: always reports core events
[  2705.977] (**) evdev: Integrated Webcam: Device: "/dev/input/event22"
[  2705.977] (--) evdev: Integrated Webcam: Vendor 0xbda Product 0x5632
[  2705.977] (--) evdev: Integrated Webcam: Found keys
[  2705.977] (II) evdev: Integrated Webcam: Configuring as keyboard
[  2705.977] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input22/event22"
[  2705.977] (**) Option "xkb_rules" "evdev"
[  2705.977] (**) Option "xkb_model" "pc105"
[  2705.977] (**) Option "xkb_layout" "us"
[  2705.977] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/event15)
[  2705.977] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchpad catchall"
[  2705.977] (**) DLL07B0:01 044E:120B: Applying InputClass "evdev touchscreen catchall"
[  2705.977] (II) Using input driver 'evdev' for 'DLL07B0:01 044E:120B'
[  2705.977] (**) DLL07B0:01 044E:120B: always reports core events
[  2705.977] (**) evdev: DLL07B0:01 044E:120B: Device: "/dev/input/event15"
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Vendor 0x44e Product 0x120b
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Found 3 mouse buttons
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Found absolute axes
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Found absolute multitouch axes
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Found x and y absolute axes
[  2705.978] (--) evdev: DLL07B0:01 044E:120B: Found absolute touchpad.
[  2705.978] (II) evdev: DLL07B0:01 044E:120B: Configuring as touchpad
[  2705.978] (**) evdev: DLL07B0:01 044E:120B: YAxisMapping: buttons 4 and 5
[  2705.978] (**) evdev: DLL07B0:01 044E:120B: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2705.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input14/event15"
[  2705.978] (II) evdev: DLL07B0:01 044E:120B: initialized for absolute axes.
[  2705.978] (**) DLL07B0:01 044E:120B: (accel) keeping acceleration scheme 1
[  2705.978] (**) DLL07B0:01 044E:120B: (accel) acceleration profile 0
[  2705.978] (**) DLL07B0:01 044E:120B: (accel) acceleration factor: 2.000
[  2705.978] (**) DLL07B0:01 044E:120B: (accel) acceleration threshold: 4
[  2705.978] (II) config/udev: Adding input device DLL07B0:01 044E:120B (/dev/input/mouse1)
[  2705.978] (II) No input driver specified, ignoring this device.
[  2705.978] (II) This device may have been added with another device file.
[  2705.978] (II) config/udev: Adding input device DualPoint Stick (/dev/input/event14)
[  2705.978] (**) DualPoint Stick: Applying InputClass "evdev pointer catchall"
[  2705.978] (II) Using input driver 'evdev' for 'DualPoint Stick'
[  2705.978] (**) DualPoint Stick: always reports core events
[  2705.978] (**) evdev: DualPoint Stick: Device: "/dev/input/event14"
[  2705.978] (--) evdev: DualPoint Stick: Vendor 0x44e Product 0x120b
[  2705.978] (--) evdev: DualPoint Stick: Found 3 mouse buttons
[  2705.978] (--) evdev: DualPoint Stick: Found relative axes
[  2705.978] (--) evdev: DualPoint Stick: Found x and y relative axes
[  2705.978] (II) evdev: DualPoint Stick: Configuring as mouse
[  2705.978] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
[  2705.978] (**) evdev: DualPoint Stick: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2705.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-18/i2c-DLL07B0:01/0018:044E:120B.0001/input/input15/event14"
[  2705.978] (II) evdev: DualPoint Stick: initialized for relative axes.
[  2705.978] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
[  2705.978] (**) DualPoint Stick: (accel) acceleration profile 0
[  2705.978] (**) DualPoint Stick: (accel) acceleration factor: 2.000
[  2705.978] (**) DualPoint Stick: (accel) acceleration threshold: 4
[  2705.979] (II) config/udev: Adding input device DualPoint Stick (/dev/input/mouse0)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event17)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event18)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event19)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event20)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.979] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event21)
[  2705.979] (II) No input driver specified, ignoring this device.
[  2705.979] (II) This device may have been added with another device file.
[  2705.980] (II) config/udev: Adding input device Intel HID events (/dev/input/event7)
[  2705.980] (**) Intel HID events: Applying InputClass "evdev keyboard catchall"
[  2705.980] (II) Using input driver 'evdev' for 'Intel HID events'
[  2705.980] (**) Intel HID events: always reports core events
[  2705.980] (**) evdev: Intel HID events: Device: "/dev/input/event7"
[  2705.980] (--) evdev: Intel HID events: Vendor 0 Product 0
[  2705.980] (--) evdev: Intel HID events: Found keys
[  2705.980] (II) evdev: Intel HID events: Configuring as keyboard
[  2705.980] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input7/event7"
[  2705.980] (**) Option "xkb_rules" "evdev"
[  2705.980] (**) Option "xkb_model" "pc105"
[  2705.980] (**) Option "xkb_layout" "us"
[  2705.980] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  2705.980] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  2705.980] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  2705.980] (**) AT Translated Set 2 keyboard: always reports core events
[  2705.980] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  2705.980] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  2705.980] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  2705.980] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  2705.980] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  2705.980] (**) Option "xkb_rules" "evdev"
[  2705.980] (**) Option "xkb_model" "pc105"
[  2705.980] (**) Option "xkb_layout" "us"
[  2705.981] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
[  2705.981] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  2705.981] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  2705.981] (**) Dell WMI hotkeys: always reports core events
[  2705.981] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
[  2705.981] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  2705.981] (--) evdev: Dell WMI hotkeys: Found keys
[  2705.981] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  2705.981] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
[  2705.981] (**) Option "xkb_rules" "evdev"
[  2705.981] (**) Option "xkb_model" "pc105"
[  2705.981] (**) Option "xkb_layout" "us"
_______________________________________________
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: https://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to