Bug#793386: nvidia-alternative: "modprobe -r nvidia-current" needed twice to unload nvidia modules

Luca Boccassi luca.boccassi at gmail.com
Fri Jul 24 07:51:35 UTC 2015


Hi Jö,

Thanks for the report, I have an optimus laptop and I was able to easily
reproduce and test the fix exactly as you wrote.

Kind regards,
Luca Boccassi
On Jul 23, 2015 15:45, "Jö Fahlke" <jorrit at jorrit.de> wrote:

> Package: nvidia-alternative
> Version: 352.21-1
> Severity: normal
>
> TLDR: In /etc/nvidia/nvidia-modprobe.conf, it should say "remove
>       nvidia-current rmmod nvidia-uvm nvidia", not "remove nvidia-current
>       rmmod nvidia nvidia-uvm".
>
> Dear Maintainer,
>
> I have the current experimental nvidia-graphics-drivers (352.21-1)
> installed
> on a stable (jessie) system with a few packages from testing which are
> needed
> by nvidia-graphics-drivers:
>
> | nvidia-modprobe_349.16-1_amd64.deb
> | libvdpau1_1.1-1_amd64.deb
> | libvdpau-dev_1.1-1_amd64.deb
>
> I'm using cuda 7 from nvidia's ubuntu 14.10 repository:
> http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1410/x86_64
>
> My laptop has integrated intel graphics, which I use to run the x-server,
> and
> an nvidia graphics card which I use to develop Cuda applications.  I'm
> switching the nvidia graphics card on using bumblebee via optirun.  I've
> set
> "KernelDriver=nvidia-current" in /etc/bumblebee/bumblebee.conf.
>
> Bumblebee is able to start the graphics card, but is unable to stop it
> again.
> So it stays on, and I usually forget to manually turn it of before I
> suspend,
> which means that sooner or later after resume I get kernel crashes.
>
> In the syslog, I see messages such as these:
>
> | Jul 22 19:10:16 paranoia bumblebeed[10691]: Unloading nvidia driver
> timed out.
>
> I tried to manually reproduce this by stopping bumblebeed and doing the
> necessary modprobes by hand, see transcript at the end.  In effect I need
> to
> run "modprobe -r nvidia-current" twice to really get both nvidia and
> nvidia-uvm unloaded.
>
> The problem appears to be in /etc/nvidia/nvidia-modprobe.conf.  There is
> the
> line
>
> | remove nvidia-current rmmod nvidia nvidia-uvm
>
> If I exchange the order of nvidia and nvidia-uvm, the modules are unloaded
> correctly after just one invocation of "modprobe -r nvidia-current".
>
> Note that there seems to be an additional issue which I could not figure
> out
> yet.  Even with the changed nvidia-modprobe.conf, running cuda programs
> through optirun unloads neither nvidia nor nvidia-uvm.  I'll file a
> seperate
> issue against bumblebee regarding that.
>
> Regards,
> Jö.
>
> === Transcript (without bumblebee) ===================================
>
> I tried reproducing this without bumblebee:
>
> | joe at paranoia:~$ sudo service bumblebeed stop
>
> Huh?  No status message?  Anyway, bumblebee has been stopped nevertheless:
>
> | joe at paranoia:~$ ps aux|grep bumblebee
> | joe       2160  0.0  0.0 14208 2312 pts/10   S+   14:57   0:00 grep
> bumblebee
>
> The card is switched on:
>
> | joe at paranoia:~$ cat /proc/acpi/bbswitch
> | 0000:01:00.0 ON
>
> And there are no nvidia modules loaded
>
> | joe at paranoia:~$ lsmod|grep nvidia
>
> I tried loading module nvidia, but that silently does not work:
>
> | joe at paranoia:~$ sudo modprobe nvidia
> | joe at paranoia:~$ lsmod|grep nvidia
>
> But loading nvidia-current does the trick
>
> | joe at paranoia:~$ sudo modprobe nvidia-current
> | joe at paranoia:~$ lsmod|grep nvidia
> | nvidia               8516549  0
> | drm                   249955  6 i915,drm_kms_helper,nvidia
> | i2c_core               46012  6
> drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,nvidia
>
> Unloading works too, but spews some strange error messages
>
> | joe at paranoia:~$ sudo modprobe -r nvidia-current
> | rmmod: ERROR: Module nvidia_uvm is not currently loaded
> | modprobe: FATAL: Error running remove command for nvidia_current
> | joe at paranoia:~$ lsmod|grep nvidia
>
> So I tried again, but this time I'm going to run a cuda unit test that
> actually runs a kernel on the device:
>
> | joe at paranoia:~$ sudo modprobe nvidia-current
> | joe at paranoia:~$ lsmod|grep nvidia
> | nvidia               8516549  0
> | drm                   249955  6 i915,drm_kms_helper,nvidia
> | i2c_core               46012  6
> drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,nvidia
> | joe at paranoia:~$
> ~/Projekte/EXA-DUNE/patches/dune-patches/dune/patches/test/cuda-kernel-run
> | joe at paranoia:~$ echo $?
> | 0
>
> Looking at the loaded modules, this has automatically loaded the module
> nvidia_uvm:
>
> | joe at paranoia:~$ lsmod|grep nvidia
> | nvidia_uvm             67454  0
> | nvidia               8516549  1 nvidia_uvm
> | drm                   249955  6 i915,drm_kms_helper,nvidia
> | i2c_core               46012  6
> drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,nvidia
>
> If I now try to unload nvidia-current, I am only partially successful:
>
> | joe at paranoia:~$ sudo modprobe -r nvidia-current
> | rmmod: ERROR: Module nvidia is in use by: nvidia_uvm
> | modprobe: FATAL: Error running remove command for nvidia_current
> | joe at paranoia:~$ lsmod|grep nvidia
> | nvidia               8516549  0
> | drm                   249955  6 i915,drm_kms_helper,nvidia
> | i2c_core               46012  6
> drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,nvidia
>
> The module nvidia is still present, so bbswitch will be unable to switch of
> the nvidia card.  I actually have to unload nvidia-current a second time,
> to
> really get rid of all nvidia drivers:
>
> | joe at paranoia:~$ sudo modprobe -r nvidia-current
> | rmmod: ERROR: Module nvidia_uvm is not currently loaded
> | modprobe: FATAL: Error running remove command for nvidia_current
> | joe at paranoia:~$ lsmod|grep nvidia
> ======================================================================
>
>
> -- Package-specific info:
> uname -a:
> Linux paranoia 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1 (2015-05-24)
> x86_64 GNU/Linux
>
> /proc/version:
> Linux version 3.16.0-4-amd64 (debian-kernel at lists.debian.org) (gcc
> version 4.8.4 (Debian 4.8.4-1) ) #1 SMP Debian 3.16.7-ckt11-1 (2015-05-24)
>
> lspci 'VGA compatible controller [0300]':
> 00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core
> processor Graphics Controller [8086:0166] (rev 09) (prog-if 00 [VGA
> controller])
>         Subsystem: Dell Device [1028:0534]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx+
>         Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin A routed to IRQ 48
>         Region 0: Memory at f6400000 (64-bit, non-prefetchable) [size=4M]
>         Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
>         Region 4: I/O ports at f000 [size=64]
>         Expansion ROM at <unassigned> [disabled]
>         Capabilities: <access denied>
>         Kernel driver in use: i915
>
> 01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108GLM [NVS
> 5200M] [10de:0dfc] (rev a1) (prog-if 00 [VGA controller])
>         Subsystem: Dell Device [1028:1534]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin A routed to IRQ 16
>         Region 0: Memory at f5000000 (32-bit, non-prefetchable) [size=16M]
>         Region 1: Memory at e0000000 (64-bit, prefetchable) [size=256M]
>         Region 3: Memory at f0000000 (64-bit, prefetchable) [size=32M]
>         Region 5: I/O ports at e000 [size=128]
>         [virtual] Expansion ROM at f6000000 [disabled] [size=512K]
>         Capabilities: <access denied>
>
> dmesg:
> [44784.685904]  dm_log dm_mod hid_generic usbhid hid sg sd_mod crc_t10dif
> crct10dif_generic crct10dif_pclmul crct10dif_common crc32_pclmul
> crc32c_intel ghash_clmulni_intel ahci aesni_intel aes_x86_64 lrw gf128mul
> libahci glue_helper ablk_helper cryptd libata sdhci_pci scsi_mod sdhci
> ehci_pci xhci_hcd ehci_hcd mmc_core e1000e usbcore ptp pps_core usb_common
> thermal thermal_sys [last unloaded: nvidia]
> [44784.691531]  dm_log dm_mod hid_generic usbhid hid sg sd_mod crc_t10dif
> crct10dif_generic crct10dif_pclmul crct10dif_common crc32_pclmul
> crc32c_intel ghash_clmulni_intel ahci aesni_intel aes_x86_64 lrw gf128mul
> libahci glue_helper ablk_helper cryptd libata sdhci_pci scsi_mod sdhci
> ehci_pci xhci_hcd ehci_hcd mmc_core e1000e usbcore ptp pps_core usb_common
> thermal thermal_sys [last unloaded: nvidia]
> [44794.715838]  dm_log dm_mod hid_generic usbhid hid sg sd_mod crc_t10dif
> crct10dif_generic crct10dif_pclmul crct10dif_common crc32_pclmul
> crc32c_intel ghash_clmulni_intel ahci aesni_intel aes_x86_64 lrw gf128mul
> libahci glue_helper ablk_helper cryptd libata sdhci_pci scsi_mod sdhci
> ehci_pci xhci_hcd ehci_hcd mmc_core e1000e usbcore ptp pps_core usb_common
> thermal thermal_sys [last unloaded: nvidia]
> [49860.937220] vgaarb: device changed decodes:
> PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
> [49860.937740] [drm] Initialized nvidia-drm 0.0.0 20150116 for
> 0000:01:00.0 on minor 1
> [49860.937750] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.21  Tue
> Jun  9 21:53:31 PDT 2015
> [54746.258725] vgaarb: device changed decodes:
> PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
> [54746.259195] [drm] Initialized nvidia-drm 0.0.0 20150116 for
> 0000:01:00.0 on minor 1
> [54746.259204] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.21  Tue
> Jun  9 21:53:31 PDT 2015
> [54801.360351] nvidia 0000:01:00.0: irq 49 for MSI/MSI-X
> [54805.996009] nvidia_uvm: Loaded the UVM driver, major device number 248
> [54852.011757] nvidia_uvm: Unregistered the UVM driver
> [54860.287555] vgaarb: device changed decodes:
> PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
> [54860.288064] [drm] Initialized nvidia-drm 0.0.0 20150116 for
> 0000:01:00.0 on minor 1
> [54860.288074] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.21  Tue
> Jun  9 21:53:31 PDT 2015
> [55165.498643] vgaarb: device changed decodes:
> PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
> [55165.499192] [drm] Initialized nvidia-drm 0.0.0 20150116 for
> 0000:01:00.0 on minor 1
> [55165.499202] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.21  Tue
> Jun  9 21:53:31 PDT 2015
> [55200.980387] vgaarb: device changed decodes:
> PCI:0000:01:00.0,olddecodes=none,decodes=none:owns=none
> [55200.980881] [drm] Initialized nvidia-drm 0.0.0 20150116 for
> 0000:01:00.0 on minor 1
> [55200.980889] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  352.21  Tue
> Jun  9 21:53:31 PDT 2015
> [55221.980615] nvidia 0000:01:00.0: irq 49 for MSI/MSI-X
> [55226.263462] nvidia_uvm: Loaded the UVM driver, major device number 248
> [55242.016964] nvidia_uvm: Unregistered the UVM driver
>
> OpenGL and NVIDIA library files installed:
> lrwxrwxrwx 1 root root            22 Apr 14 03:36 /etc/alternatives/glx ->
> /usr/lib/mesa-diverted
> lrwxrwxrwx 1 root root            51 Apr 14 03:36
> /etc/alternatives/glx--libEGL.so.1-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so.1
> lrwxrwxrwx 1 root root            48 Aug 22  2014
> /etc/alternatives/glx--libGL.so-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so
> lrwxrwxrwx 1 root root            48 Aug 22  2014
> /etc/alternatives/glx--libGL.so-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so
> lrwxrwxrwx 1 root root            50 Apr 14 03:36
> /etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
> lrwxrwxrwx 1 root root            50 Apr 14 03:36
> /etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
> lrwxrwxrwx 1 root root            57 Apr 14 03:36
> /etc/alternatives/glx--libGLESv1_CM.so.1-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv1_CM.so.1
> lrwxrwxrwx 1 root root            57 Apr 14 03:36
> /etc/alternatives/glx--libGLESv1_CM.so.1-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv1_CM.so.1
> lrwxrwxrwx 1 root root            54 Apr 14 03:36
> /etc/alternatives/glx--libGLESv2.so.2-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
> lrwxrwxrwx 1 root root            54 Apr 14 03:36
> /etc/alternatives/glx--libGLESv2.so.2-x86_64-linux-gnu ->
> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
> lrwxrwxrwx 1 root root            22 Aug 22  2014
> /etc/alternatives/libGL.so-master -> /usr/lib/mesa-diverted
> lrwxrwxrwx 1 root root            23 Jul 22 11:52 /etc/alternatives/nvidia
> -> /usr/lib/nvidia/current
> lrwxrwxrwx 1 root root            52 Jul 22 11:52
> /etc/alternatives/nvidia--libEGL.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libEGL.so.1
> lrwxrwxrwx 1 root root            49 Jul 22 11:52
> /etc/alternatives/nvidia--libGL.so.1-i386-linux-gnu ->
> /usr/lib/i386-linux-gnu/nvidia/current/libGL.so.1
> lrwxrwxrwx 1 root root            49 Jul 22 11:52
> /etc/alternatives/nvidia--libGL.so.1-i386-linux-gnu ->
> /usr/lib/i386-linux-gnu/nvidia/current/libGL.so.1
> lrwxrwxrwx 1 root root            51 Jul 22 11:52
> /etc/alternatives/nvidia--libGL.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.1
> lrwxrwxrwx 1 root root            51 Jul 22 11:52
> /etc/alternatives/nvidia--libGL.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.1
> lrwxrwxrwx 1 root root            58 Jul 22 11:52
> /etc/alternatives/nvidia--libGLESv1_CM.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGLESv1_CM.so.1
> lrwxrwxrwx 1 root root            58 Jul 22 11:52
> /etc/alternatives/nvidia--libGLESv1_CM.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGLESv1_CM.so.1
> lrwxrwxrwx 1 root root            55 Jul 22 11:52
> /etc/alternatives/nvidia--libGLESv2.so.2-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGLESv2.so.2
> lrwxrwxrwx 1 root root            55 Jul 22 11:52
> /etc/alternatives/nvidia--libGLESv2.so.2-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libGLESv2.so.2
> lrwxrwxrwx 1 root root            49 Jul 22 11:52
> /etc/alternatives/nvidia--libcuda.so-i386-linux-gnu ->
> /usr/lib/i386-linux-gnu/nvidia/current/libcuda.so
> lrwxrwxrwx 1 root root            51 Jul 22 11:52
> /etc/alternatives/nvidia--libcuda.so-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libcuda.so
> lrwxrwxrwx 1 root root            51 Jul 22 11:52
> /etc/alternatives/nvidia--libcuda.so.1-i386-linux-gnu ->
> /usr/lib/i386-linux-gnu/nvidia/current/libcuda.so.1
> lrwxrwxrwx 1 root root            53 Jul 22 11:52
> /etc/alternatives/nvidia--libcuda.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libcuda.so.1
> lrwxrwxrwx 1 root root            33 Jul 22 11:52
> /etc/alternatives/nvidia--libglx.so -> /usr/lib/nvidia/current/libglx.so
> lrwxrwxrwx 1 root root            56 Jul 22 11:52
> /etc/alternatives/nvidia--libnvcuvid.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libnvcuvid.so.1
> lrwxrwxrwx 1 root root            57 Jul 22 11:52
> /etc/alternatives/nvidia--libnvidia-cfg.so.1-i386-linux-gnu ->
> /usr/lib/i386-linux-gnu/nvidia/current/libnvidia-cfg.so.1
> lrwxrwxrwx 1 root root            59 Jul 22 11:52
> /etc/alternatives/nvidia--libnvidia-cfg.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libnvidia-cfg.so.1
> lrwxrwxrwx 1 root root            58 Jul 22 11:52
> /etc/alternatives/nvidia--libnvidia-ml.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libnvidia-ml.so.1
> lrwxrwxrwx 1 root root            62 Jul 22 11:52
> /etc/alternatives/nvidia--libnvidia-opencl.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libnvidia-opencl.so.1
> lrwxrwxrwx 1 root root            61 Jul 22 11:52
> /etc/alternatives/nvidia--libvdpau_nvidia.so.1-x86_64-linux-gnu ->
> /usr/lib/x86_64-linux-gnu/nvidia/current/libvdpau_nvidia.so.1
> lrwxrwxrwx 1 root root            44 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia-bug-report.sh ->
> /usr/lib/nvidia/current/nvidia-bug-report.sh
> lrwxrwxrwx 1 root root            40 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia-debugdump ->
> /usr/lib/nvidia/current/nvidia-debugdump
> lrwxrwxrwx 1 root root            32 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia-modprobe.conf ->
> /etc/nvidia/nvidia-modprobe.conf
> lrwxrwxrwx 1 root root            34 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia-smi -> /usr/lib/nvidia/current/nvidia-smi
> lrwxrwxrwx 1 root root            39 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia-smi.1.gz ->
> /usr/lib/nvidia/current/nvidia-smi.1.gz
> lrwxrwxrwx 1 root root            37 Jul 22 11:52
> /etc/alternatives/nvidia--nvidia_drv.so ->
> /usr/lib/nvidia/current/nvidia_drv.so
> -rw-r--r-- 1 root root      35377080 Jun 10 06:20
> /usr/lib/i386-linux-gnu/libnvidia-glcore.so.352.21
> -rw-r--r-- 1 root root         13788 Jun 10 06:26
> /usr/lib/i386-linux-gnu/libnvidia-tls.so.352.21
> lrwxrwxrwx 1 root root            51 Apr 14 01:21
> /usr/lib/x86_64-linux-gnu/libEGL.so.1 ->
> /etc/alternatives/glx--libEGL.so.1-x86_64-linux-gnu
> lrwxrwxrwx 1 root root            48 Aug 22  2014
> /usr/lib/x86_64-linux-gnu/libGL.so ->
> /etc/alternatives/glx--libGL.so-x86_64-linux-gnu
> lrwxrwxrwx 1 root root            50 Aug 22  2014
> /usr/lib/x86_64-linux-gnu/libGL.so.1 ->
> /etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu
> lrwxrwxrwx 1 root root            57 Apr 14 03:36
> /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so.1 ->
> /etc/alternatives/glx--libGLESv1_CM.so.1-x86_64-linux-gnu
> lrwxrwxrwx 1 root root            54 Apr 14 03:36
> /usr/lib/x86_64-linux-gnu/libGLESv2.so.2 ->
> /etc/alternatives/glx--libGLESv2.so.2-x86_64-linux-gnu
> -rw-r--r-- 1 root root      48307000 Jun 10 08:05
> /usr/lib/x86_64-linux-gnu/libnvidia-compiler.so.352.21
> -rw-r--r-- 1 root root      40641640 Jun 10 08:02
> /usr/lib/x86_64-linux-gnu/libnvidia-eglcore.so.352.21
> -rw-r--r-- 1 root root      42459256 Jun 10 06:21
> /usr/lib/x86_64-linux-gnu/libnvidia-glcore.so.352.21
> -rw-r--r-- 1 root root        484800 Jun 10 07:47
> /usr/lib/x86_64-linux-gnu/libnvidia-glsi.so.352.21
> lrwxrwxrwx 1 root root            60 Apr 14 02:21
> /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.1 ->
> /etc/alternatives/nvidia--libnvidia-ml.so.1-x86_64-linux-gnu
> lrwxrwxrwx 1 root root            64 Apr 14 02:21
> /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 ->
> /etc/alternatives/nvidia--libnvidia-opencl.so.1-x86_64-linux-gnu
> -rw-r--r-- 1 root root         12600 Jun 10 06:26
> /usr/lib/x86_64-linux-gnu/libnvidia-tls.so.352.21
> -rw-r--r-- 1 root root        294312 Feb 11 01:35
> /usr/lib/xorg/modules/extensions/libglx.so
> -rw-r--r-- 1 root root        135912 Jul 23 14:07 /var/log/Xorg.0.log
> -rw-r--r-- 1 root root        173346 Jul 22 12:02 /var/log/Xorg.0.log.old
> -rw-r--r-- 1 root root        142591 Jul 21 01:09 /var/log/Xorg.1.log
> -rw-r--r-- 1 root root        117219 Jul 19 00:34 /var/log/Xorg.1.log.old
> -rw-r--r-- 1 root root         41954 Jan  9  2015 /var/log/Xorg.2.log
> -rw-r--r-- 1 root root         43283 Jan  9  2015 /var/log/Xorg.2.log.old
> -rw-r--r-- 1 root root         31923 Dec  3  2011 /var/log/Xorg.20.log
> -rw-r--r-- 1 root root         29143 Nov  9  2011 /var/log/Xorg.20.log.old
> -rw-r--r-- 1 root root         35088 Sep 20  2011 /var/log/Xorg.21.log
> -rw-r--r-- 1 root root          6862 Jan  7  2014 /var/log/Xorg.3.log
> -rw-r--r-- 1 root root          6627 Jan  7  2014 /var/log/Xorg.3.log.old
> -rw-r--r-- 1 root root          6862 Jan  7  2014 /var/log/Xorg.4.log
> -rw-r--r-- 1 root root          6627 Jan  7  2014 /var/log/Xorg.4.log.old
> -rw-r--r-- 1 root root          6862 Jan  7  2014 /var/log/Xorg.5.log
> -rw-r--r-- 1 root root          6627 Jan  7  2014 /var/log/Xorg.5.log.old
> -rw-r--r-- 1 root bumblebee    13682 Jul 22 15:06 /var/log/Xorg.8.log
> -rw-r--r-- 1 root bumblebee    13885 Jul 22 14:39 /var/log/Xorg.8.log.old
> /etc/nvidia/:
> total 36
> drwxr-xr-x   2 root root  4096 Jul 23 14:05 .
> drwxr-xr-x 245 root root 20480 Jul 23 13:57 ..
> -rw-r--r--   1 root root    98 May 16  2013 nvidia-blacklists-nouveau.conf
> -rw-r--r--   1 root root   122 Jul 23 14:05 nvidia-modprobe.conf
> -rw-r--r--   1 root root   122 Jul 22 19:16 nvidia-modprobe.conf~
>
> /usr/lib/i386-linux-gnu/nvidia/:
> total 12
> drwxr-xr-x 3 root root 4096 Jul 22 11:52 .
> drwxr-xr-x 6 root root 4096 Jul 22 11:52 ..
> drwxr-xr-x 2 root root 4096 Jul 22 11:52 current
> lrwxrwxrwx 1 root root   51 Jul 22 11:52 libGL.so.1 ->
> /etc/alternatives/nvidia--libGL.so.1-i386-linux-gnu
> lrwxrwxrwx 1 root root   59 Jul 22 11:52 libnvidia-cfg.so.1 ->
> /etc/alternatives/nvidia--libnvidia-cfg.so.1-i386-linux-gnu
>
> /usr/lib/i386-linux-gnu/nvidia/current/:
> total 15120
> drwxr-xr-x 2 root root     4096 Jul 22 11:52 .
> drwxr-xr-x 3 root root     4096 Jul 22 11:52 ..
> lrwxrwxrwx 1 root root       15 Jul 21 12:33 libGL.so.1 -> libGL.so.352.21
> -rw-r--r-- 1 root root  1043116 Jun 10 06:21 libGL.so.352.21
> lrwxrwxrwx 1 root root       12 Jul 21 12:33 libcuda.so -> libcuda.so.1
> lrwxrwxrwx 1 root root       17 Jul 21 12:33 libcuda.so.1 ->
> libcuda.so.352.21
> -rw-r--r-- 1 root root 14256716 Jun 10 06:38 libcuda.so.352.21
> lrwxrwxrwx 1 root root       23 Jul 21 12:33 libnvidia-cfg.so.1 ->
> libnvidia-cfg.so.352.21
> -rw-r--r-- 1 root root   171600 Jun 10 07:39 libnvidia-cfg.so.352.21
>
> /usr/lib/mesa-diverted/:
> total 152
> drwxr-xr-x   5 root root   4096 Aug 22  2014 .
> drwxr-xr-x 252 root root 135168 Jul 22 11:51 ..
> drwxr-xr-x   2 root root   4096 Feb 18  2014 arm-linux-gnueabihf
> drwxr-xr-x   2 root root   4096 Apr 14 00:49 i386-linux-gnu
> lrwxrwxrwx   1 root root     33 Aug 22  2014 libGL.so-master ->
> /etc/alternatives/libGL.so-master
> drwxr-xr-x   2 root root   4096 Apr 14 03:36 x86_64-linux-gnu
>
> /usr/lib/mesa-diverted/i386-linux-gnu/:
> total 8
> drwxr-xr-x 2 root root 4096 Apr 14 00:49 .
> drwxr-xr-x 5 root root 4096 Aug 22  2014 ..
>
> /usr/lib/mesa-diverted/x86_64-linux-gnu/:
> total 844
> drwxr-xr-x 2 root root   4096 Apr 14 03:36 .
> drwxr-xr-x 5 root root   4096 Aug 22  2014 ..
> lrwxrwxrwx 1 root root     15 Oct 27  2014 libEGL.so.1 -> libEGL.so.1.0.0
> -rw-r--r-- 1 root root 173144 Oct 27  2014 libEGL.so.1.0.0
> lrwxrwxrwx 1 root root     10 Apr 14 02:18 libGL.so -> libGL.so.1
> lrwxrwxrwx 1 root root     14 Oct 27  2014 libGL.so.1 -> libGL.so.1.2.0
> -rw-r--r-- 1 root root 627320 Oct 27  2014 libGL.so.1.2.0
> lrwxrwxrwx 1 root root     21 Oct 27  2014 libGLESv1_CM.so.1 ->
> libGLESv1_CM.so.1.1.0
> -rw-r--r-- 1 root root  18232 Oct 27  2014 libGLESv1_CM.so.1.1.0
> lrwxrwxrwx 1 root root     18 Oct 27  2014 libGLESv2.so.2 ->
> libGLESv2.so.2.0.0
> -rw-r--r-- 1 root root  26424 Oct 27  2014 libGLESv2.so.2.0.0
>
> /usr/lib/mesa/:
> total 140
> drwxr-xr-x   2 root root   4096 Feb 18  2014 .
> drwxr-xr-x 252 root root 135168 Jul 22 11:51 ..
>
> /usr/lib/nvidia/:
> total 164
> drwxr-xr-x   3 root root   4096 Apr 14 05:27 .
> drwxr-xr-x 252 root root 135168 Jul 22 11:51 ..
> -rw-r--r--   1 root root     57 Aug  8  2013 alternate-install-present
> -rwxr-xr-x   1 root root   2125 Dec  2  2014
> check-for-conflicting-opengl-libraries
> -rwxr-xr-x   1 root root   1897 Nov  2  2013
> check-for-mismatching-nvidia-module
> -rwxr-xr-x   1 root root   2734 Nov  2  2013
> create-xorg-nvidia-conf-experimental
> drwxr-xr-x   2 root root   4096 Jul 22 11:51 current
> lrwxrwxrwx   1 root root     35 Sep 17  2014 libglx.so ->
> /etc/alternatives/nvidia--libglx.so
> lrwxrwxrwx   1 root root     24 Sep 17  2014 nvidia ->
> /etc/alternatives/nvidia
> lrwxrwxrwx   1 root root     46 Sep 17  2014 nvidia-bug-report.sh ->
> /etc/alternatives/nvidia--nvidia-bug-report.sh
> lrwxrwxrwx   1 root root     39 Sep 17  2014 nvidia_drv.so ->
> /etc/alternatives/nvidia--nvidia_drv.so
> -rwxr-xr-x   1 root root    618 May 22  2012 pre-install
>
> /usr/lib/nvidia/current/:
> total 21080
> drwxr-xr-x 2 root root     4096 Jul 22 11:51 .
> drwxr-xr-x 3 root root     4096 Apr 14 05:27 ..
> lrwxrwxrwx 1 root root       16 Jul 21 12:43 libglx.so -> libglx.so.352.21
> -rw-r--r-- 1 root root 12259080 Jun 10 06:26 libglx.so.352.21
> -rwxr-xr-x 1 root root    23489 Jun 10 08:08 nvidia-bug-report.sh
> -rwxr-xr-x 1 root root   209168 Jun 10 07:45 nvidia-debugdump
> -rwxr-xr-x 1 root root   417920 Jun 10 07:45 nvidia-smi
> -rw-r--r-- 1 root root    18131 Jul 21 12:43 nvidia-smi.1.gz
> -rw-r--r-- 1 root root     2457 Jul 21 12:43 nvidia.ids
> -rw-r--r-- 1 root root  8631672 Jun 10 06:03 nvidia_drv.so
>
> /usr/lib/nvidia/nvidia/:
> total 21080
> drwxr-xr-x 2 root root     4096 Jul 22 11:51 .
> drwxr-xr-x 3 root root     4096 Apr 14 05:27 ..
> lrwxrwxrwx 1 root root       16 Jul 21 12:43 libglx.so -> libglx.so.352.21
> -rw-r--r-- 1 root root 12259080 Jun 10 06:26 libglx.so.352.21
> -rwxr-xr-x 1 root root    23489 Jun 10 08:08 nvidia-bug-report.sh
> -rwxr-xr-x 1 root root   209168 Jun 10 07:45 nvidia-debugdump
> -rwxr-xr-x 1 root root   417920 Jun 10 07:45 nvidia-smi
> -rw-r--r-- 1 root root    18131 Jul 21 12:43 nvidia-smi.1.gz
> -rw-r--r-- 1 root root     2457 Jul 21 12:43 nvidia.ids
> -rw-r--r-- 1 root root  8631672 Jun 10 06:03 nvidia_drv.so
>
> /usr/lib/x86_64-linux-gnu/nvidia/:
> total 172
> drwxr-xr-x   3 root root   4096 Jul 22 11:52 .
> drwxr-xr-x 122 root root 155648 Jul 22 11:52 ..
> drwxr-xr-x   2 root root   4096 Jul 22 11:52 current
> lrwxrwxrwx   1 root root     54 Apr 14 02:21 libEGL.so.1 ->
> /etc/alternatives/nvidia--libEGL.so.1-x86_64-linux-gnu
> lrwxrwxrwx   1 root root     53 Sep 17  2014 libGL.so.1 ->
> /etc/alternatives/nvidia--libGL.so.1-x86_64-linux-gnu
> lrwxrwxrwx   1 root root     60 Jul 22 11:52 libGLESv1_CM.so.1 ->
> /etc/alternatives/nvidia--libGLESv1_CM.so.1-x86_64-linux-gnu
> lrwxrwxrwx   1 root root     57 Jul 22 11:52 libGLESv2.so.2 ->
> /etc/alternatives/nvidia--libGLESv2.so.2-x86_64-linux-gnu
> lrwxrwxrwx   1 root root     61 Sep 17  2014 libnvidia-cfg.so.1 ->
> /etc/alternatives/nvidia--libnvidia-cfg.so.1-x86_64-linux-gnu
>
> /usr/lib/x86_64-linux-gnu/nvidia/current/:
> total 35032
> drwxr-xr-x 2 root root     4096 Jul 22 11:52 .
> drwxr-xr-x 3 root root     4096 Jul 22 11:52 ..
> lrwxrwxrwx 1 root root       16 Jul 21 12:43 libEGL.so.1 ->
> libEGL.so.352.21
> -rw-r--r-- 1 root root   935112 Jun 10 08:03 libEGL.so.352.21
> lrwxrwxrwx 1 root root       15 Jul 21 12:43 libGL.so.1 -> libGL.so.352.21
> -rw-r--r-- 1 root root  1213928 Jun 10 06:22 libGL.so.352.21
> lrwxrwxrwx 1 root root       22 Jul 21 12:43 libGLESv1_CM.so.1 ->
> libGLESv1_CM.so.352.21
> -rw-r--r-- 1 root root    51080 Jun 10 08:03 libGLESv1_CM.so.352.21
> lrwxrwxrwx 1 root root       19 Jul 21 12:43 libGLESv2.so.2 ->
> libGLESv2.so.352.21
> -rw-r--r-- 1 root root    75400 Jun 10 08:03 libGLESv2.so.352.21
> lrwxrwxrwx 1 root root       12 Jul 21 12:43 libcuda.so -> libcuda.so.1
> lrwxrwxrwx 1 root root       17 Jul 21 12:43 libcuda.so.1 ->
> libcuda.so.352.21
> -rw-r--r-- 1 root root 14272904 Jun 10 06:41 libcuda.so.352.21
> lrwxrwxrwx 1 root root       15 Jul 21 12:43 libnvcuvid.so ->
> libnvcuvid.so.1
> lrwxrwxrwx 1 root root       20 Jul 21 12:43 libnvcuvid.so.1 ->
> libnvcuvid.so.352.21
> -rw-r--r-- 1 root root  1638960 Jun 10 07:46 libnvcuvid.so.352.21
> lrwxrwxrwx 1 root root       23 Jul 21 12:43 libnvidia-cfg.so.1 ->
> libnvidia-cfg.so.352.21
> -rw-r--r-- 1 root root   161832 Jun 10 07:44 libnvidia-cfg.so.352.21
> lrwxrwxrwx 1 root root       17 Jul 21 12:43 libnvidia-ml.so ->
> libnvidia-ml.so.1
> lrwxrwxrwx 1 root root       22 Jul 21 12:43 libnvidia-ml.so.1 ->
> libnvidia-ml.so.352.21
> -rw-r--r-- 1 root root   963104 Jun 10 07:45 libnvidia-ml.so.352.21
> lrwxrwxrwx 1 root root       26 Jul 21 12:43 libnvidia-opencl.so.1 ->
> libnvidia-opencl.so.352.21
> -rw-r--r-- 1 root root 15890640 Jun 10 06:42 libnvidia-opencl.so.352.21
> lrwxrwxrwx 1 root root       25 Jul 21 12:43 libvdpau_nvidia.so.1 ->
> libvdpau_nvidia.so.352.21
> -rw-r--r-- 1 root root   637528 Jun 10 06:26 libvdpau_nvidia.so.352.21
>
> /etc/modprobe.d:
> total 92
> drwxr-xr-x   3 root root  4096 Jun  7 13:16 .
> drwxr-xr-x 245 root root 20480 Jul 23 13:57 ..
> drwxr-xr-x   2 root root  4096 Jan 28  2010 RCS
> -rw-r--r--   1 root root   484 Oct  9  2006 bluez.conf
> -rw-r--r--   1 root root   180 Dec  8  2014 broadcom-sta-dkms.conf
> -rw-r--r--   1 root root  1341 Apr 14 05:50 bumblebee.conf
> -rw-r--r--   1 root root   127 Oct  6  2012 dkms.conf
> -rw-r--r--   1 root root   390 Mar 30 13:52 fbdev-blacklist.conf
> -rw-r--r--   1 root root   594 Jan 27  2008 hostap-utils
> -rw-r--r--   1 root root    23 Jan  7  2010 i915-kms.conf
> -rw-r--r--   1 root root   154 Oct 30  2014 intel-microcode-blacklist.conf
> -rw-r--r--   1 root root    44 Sep 17  2013 irda-utils.conf
> -rw-r--r--   1 root root    22 Sep 14  2008 kqemu
> -rw-r--r--   1 root root   153 Jan 28  2010 local.conf.bak
> -rw-r--r--   1 root root   379 Dec 20  2014 mdadm.conf
> -rw-r--r--   1 root root    51 Jul  8  2014 modesetting.conf
> -rw-r--r--   1 root root   259 Nov 23  2013 nvidia-kernel-common.conf
> lrwxrwxrwx   1 root root    46 Sep 17  2014 nvidia.conf ->
> /etc/alternatives/nvidia--nvidia-modprobe.conf
> -rw-r--r--   1 root root   119 Oct 18  2014 oss-compat.conf
> -rw-r--r--   1 root root    26 May 14  2010 radeon-kms.conf
>
> /etc/modprobe.d/bumblebee.conf:# installed by bumblebee-nvidia
> /etc/modprobe.d/bumblebee.conf:# do not automatically load nouveau as it
> may prevent nvidia from loading
> /etc/modprobe.d/bumblebee.conf:# do not automatically load nvidia as it's
> unloaded anyway when bumblebeed
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-current
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-current-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-304
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-304-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-304
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-310
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-310-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-310
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-313
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-313-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-313
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-319
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-319-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-319
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-325
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-325-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-325
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-331
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-331-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-331
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-334
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-334-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-334
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-337
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-337-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-337
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-340
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-340-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-340
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-343
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-343-updates
> /etc/modprobe.d/bumblebee.conf:blacklist nvidia-experimental-343
> /etc/modprobe.d/nvidia-kernel-common.conf:alias char-major-195* nvidia
> /etc/modprobe.d/nvidia-kernel-common.conf:options nvidia
> NVreg_DeviceFileUID=0 NVreg_DeviceFileGID=44 NVreg_DeviceFileMode=0660
> /etc/modprobe.d/nvidia-kernel-common.conf:# options nvidia
> NVreg_EnableAGPSBA=1
> /etc/modprobe.d/nvidia-kernel-common.conf:# options nvidia
> NVreg_EnableAGPFW=1
> /etc/modprobe.d/bumblebee.conf:# do not automatically load nouveau as it
> may prevent nvidia from loading
> /etc/modprobe.d/bumblebee.conf:blacklist nouveau
>
> Files from nvidia-installer:
>
> Config and logfiles:
>
> <<<<<<<<<< /etc/modprobe.d/nvidia-kernel-common.conf >>>>>>>>>>
> alias char-major-195* nvidia
> options nvidia NVreg_DeviceFileUID=0 NVreg_DeviceFileGID=44
> NVreg_DeviceFileMode=0660
> # To enable FastWrites and Sidebus addressing, uncomment these lines
> # options nvidia NVreg_EnableAGPSBA=1
> # options nvidia NVreg_EnableAGPFW=1
> ^^^^^^^^^^ /etc/modprobe.d/nvidia-kernel-common.conf ^^^^^^^^^^
>
> <<<<<<<<<< /etc/modprobe.d/nvidia.conf >>>>>>>>>>
> alias nvidia nvidia-current
> remove nvidia-current rmmod nvidia nvidia-uvm
> #remove nvidia-current rmmod nvidia-uvm nvidia
>
> ^^^^^^^^^^ /etc/modprobe.d/nvidia.conf ^^^^^^^^^^
>
> <<<<<<<<<< /var/log/Xorg.0.log >>>>>>>>>>
> [    59.400]
> X.Org X Server 1.16.4
> Release Date: 2014-12-20
> [    59.400] X Protocol Version 11, Revision 0
> [    59.400] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian
> [    59.400] Current Operating System: Linux paranoia 3.16.0-4-amd64 #1
> SMP Debian 3.16.7-ckt11-1 (2015-05-24) x86_64
> [    59.400] Kernel command line: BOOT_IMAGE=/vmlinuz-3.16.0-4-amd64
> root=UUID=3d183efa-7e39-4dc1-9e3e-46b0fb096d32 ro quiet
> [    59.400] Build Date: 11 February 2015  12:32:02AM
> [    59.400] xorg-server 2:1.16.4-1 (http://www.debian.org/support)
> [    59.400] Current version of pixman: 0.32.6
> [    59.400]    Before reporting problems, check http://wiki.x.org
>         to make sure that you have the latest version.
> [    59.400] Markers: (--) probed, (**) from config file, (==) default
> setting,
>         (++) from command line, (!!) notice, (II) informational,
>         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
> [    59.401] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 22
> 12:09:38 2015
> [    59.874] (==) Using system config directory
> "/usr/share/X11/xorg.conf.d"
> [    59.972] (==) No Layout section.  Using the first Screen section.
> [    59.972] (==) No screen section available. Using defaults.
> [    59.972] (**) |-->Screen "Default Screen Section" (0)
> [    59.972] (**) |   |-->Monitor "<default monitor>"
> [    59.992] (==) No monitor specified for screen "Default Screen Section".
>         Using a default monitor configuration.
> [    59.993] (==) Automatically adding devices
> [    59.993] (==) Automatically enabling devices
> [    59.993] (==) Automatically adding GPU devices
> [    61.028] (==) FontPath set to:
>         /usr/share/fonts/X11/misc,
>         /usr/share/fonts/X11/cyrillic,
>         /usr/share/fonts/X11/100dpi/:unscaled,
>         /usr/share/fonts/X11/75dpi/:unscaled,
>         /usr/share/fonts/X11/Type1,
>         /usr/share/fonts/X11/100dpi,
>         /usr/share/fonts/X11/75dpi,
>         built-ins
> [    61.028] (==) ModulePath set to "/usr/lib/xorg/modules"
> [    61.028] (II) The server relies on udev to provide the list of input
> devices.
>         If no devices become available, reconfigure udev or disable
> AutoAddDevices.
> [    61.131] (II) Loader magic: 0x7f24feaafd80
> [    61.131] (II) Module ABI versions:
> [    61.131]    X.Org ANSI C Emulation: 0.4
> [    61.131]    X.Org Video Driver: 18.0
> [    61.131]    X.Org XInput driver : 21.0
> [    61.131]    X.Org Server Extension : 8.0
> [    61.131] (II) xfree86: Adding drm device (/dev/dri/card0)
> [    61.133] (--) PCI:*(0:0:2:0) 8086:0166:1028:0534 rev 9, Mem @
> 0xf6400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
> [    61.199] (II) LoadModule: "glx"
> [    61.466] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
> [    62.965] (II) Module glx: vendor="X.Org Foundation"
> [    62.965]    compiled for 1.16.4, module version = 1.0.0
> [    62.965]    ABI class: X.Org Server Extension, version 8.0
> [    62.965] (==) AIGLX enabled
> [    62.965] (==) Matched intel as autoconfigured driver 0
> [    62.965] (==) Matched intel as autoconfigured driver 1
> [    62.965] (==) Matched modesetting as autoconfigured driver 2
> [    62.965] (==) Matched fbdev as autoconfigured driver 3
> [    62.965] (==) Matched vesa as autoconfigured driver 4
> [    62.965] (==) Assigned the driver to the xf86ConfigLayout
> [    62.965] (II) LoadModule: "intel"
> [    62.966] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
> [    63.860] (II) Module intel: vendor="X.Org Foundation"
> [    63.860]    compiled for 1.15.99.904, module version = 2.21.15
> [    63.860]    Module class: X.Org Video Driver
> [    63.860]    ABI class: X.Org Video Driver, version 18.0
> [    63.860] (II) LoadModule: "modesetting"
> [    63.861] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
> [    64.081] (II) Module modesetting: vendor="X.Org Foundation"
> [    64.081]    compiled for 1.15.99.904, module version = 0.9.0
> [    64.081]    Module class: X.Org Video Driver
> [    64.081]    ABI class: X.Org Video Driver, version 18.0
> [    64.081] (II) LoadModule: "fbdev"
> [    64.081] (WW) Warning, couldn't open module fbdev
> [    64.081] (II) UnloadModule: "fbdev"
> [    64.081] (II) Unloading fbdev
> [    64.081] (EE) Failed to load module "fbdev" (module does not exist, 0)
> [    64.081] (II) LoadModule: "vesa"
> [    64.082] (WW) Warning, couldn't open module vesa
> [    64.082] (II) UnloadModule: "vesa"
> [    64.082] (II) Unloading vesa
> [    64.082] (EE) Failed to load module "vesa" (module does not exist, 0)
> [    64.082] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
>         i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
>         915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
>         Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35,
> Q33,
>         GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
>         HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
>         HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
>         HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
>         HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
> [    64.111] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
> [    64.111] (++) using VT number 7
>
> [    64.175] (WW) Falling back to old probe method for modesetting
> [    64.175] (II) intel(0): Creating default Display subsection in Screen
> section
>         "Default Screen Section" for depth/fbbpp 24/32
> [    64.175] (==) intel(0): Depth 24, (--) framebuffer bpp 32
> [    64.175] (==) intel(0): RGB weight 888
> [    64.175] (==) intel(0): Default visual is TrueColor
> [    64.176] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD
> Graphics 4000
> [    64.176] (**) intel(0): Relaxed fencing enabled
> [    64.176] (**) intel(0): Wait on SwapBuffers? enabled
> [    64.176] (**) intel(0): Triple buffering? enabled
> [    64.176] (**) intel(0): Framebuffer tiled
> [    64.176] (**) intel(0): Pixmaps tiled
> [    64.176] (**) intel(0): 3D buffers tiled
> [    64.176] (**) intel(0): SwapBuffers wait enabled
> [    64.176] (==) intel(0): video overlay key set to 0x101fe
> [    64.176] (II) intel(0): Output LVDS1 has no monitor section
> [    64.176] (--) intel(0): found backlight control interface
> /sys/class/backlight/intel_backlight
> [    64.189] (II) intel(0): Output VGA1 has no monitor section
> [    64.189] (II) intel(0): EDID for output LVDS1
> [    64.189] (II) intel(0): Manufacturer: LGD  Model: 2df  Serial#: 0
> [    64.189] (II) intel(0): Year: 2010  Week: 0
> [    64.189] (II) intel(0): EDID Version: 1.4
> [    64.189] (II) intel(0): Digital Display Input
> [    64.189] (II) intel(0): 6 bits per channel
> [    64.190] (II) intel(0): Digital interface is undefined
> [    64.190] (II) intel(0): Max Image Size [cm]: horiz.: 31  vert.: 17
> [    64.190] (II) intel(0): Gamma: 2.20
> [    64.190] (II) intel(0): No DPMS capabilities specified
> [    64.190] (II) intel(0): Supported color encodings: RGB 4:4:4
> [    64.190] (II) intel(0): First detailed timing is preferred mode
> [    64.190] (II) intel(0): Preferred mode is native pixel format and
> refresh rate
> [    64.190] (II) intel(0): redX: 0.591 redY: 0.348   greenX: 0.340
> greenY: 0.558
> [    64.190] (II) intel(0): blueX: 0.157 blueY: 0.129   whiteX: 0.313
> whiteY: 0.329
> [    64.190] (II) intel(0): Manufacturer's mask: 0
> [    64.190] (II) intel(0): Supported detailed timing:
> [    64.190] (II) intel(0): clock: 97.1 MHz   Image Size:  310 x 174 mm
> [    64.190] (II) intel(0): h_active: 1600  h_sync: 1648  h_sync_end 1696
> h_blank_end 1774 h_border: 0
> [    64.190] (II) intel(0): v_active: 900  v_sync: 903  v_sync_end 907
> v_blanking: 912 v_border: 0
> [    64.190] (II) intel(0): Supported detailed timing:
> [    64.190] (II) intel(0): clock: 97.1 MHz   Image Size:  310 x 174 mm
> [    64.190] (II) intel(0): h_active: 1600  h_sync: 1648  h_sync_end 1696
> h_blank_end 2370 h_border: 0
> [    64.190] (II) intel(0): v_active: 900  v_sync: 903  v_sync_end 907
> v_blanking: 1024 v_border: 0
> [    64.190] (II) intel(0):  P7FFH�140WD1
> [    64.190] (II) intel(0): Unknown vendor-specific block 0
> [    64.190] (II) intel(0): EDID (in hex):
> [    64.190] (II) intel(0):     00ffffffffffff0030e4df0200000000
> [    64.190] (II) intel(0):     00140104901f11780243459759578e28
> [    64.190] (II) intel(0):     21505400000001010101010101010101
> [    64.190] (II) intel(0):     010101010101f02540ae60840c303030
> [    64.190] (II) intel(0):     340036ae1000001af025400263847c30
> [    64.190] (II) intel(0):     3030340036ae1000001a000000fe0050
> [    64.190] (II) intel(0):     37464648803134305744310a00000000
> [    64.190] (II) intel(0):     000041319e0000000002010a20200072
> [    64.190] (II) intel(0): Not using default mode "320x240" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "400x300" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "400x300" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "512x384" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "640x480" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "640x512" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "800x600" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "896x672" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "928x696" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "960x720" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "576x432" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "680x384" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "680x384" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "700x525" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "720x450" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "800x512" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "840x525" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "840x525" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "960x540" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "960x600" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Not using default mode "1024x768" (doublescan
> mode not supported)
> [    64.190] (II) intel(0): Printing probed modes for output LVDS1
> [    64.190] (II) intel(0): Modeline "1600x900"x60.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [    64.190] (II) intel(0): Modeline "1600x900"x40.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [    64.190] (II) intel(0): Modeline "1440x900"x59.9  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz d)
> [    64.190] (II) intel(0): Modeline "1360x768"x59.8   84.75  1360 1432
> 1568 1776  768 771 781 798 -hsync +vsync (47.7 kHz d)
> [    64.190] (II) intel(0): Modeline "1360x768"x60.0   72.00  1360 1408
> 1440 1520  768 771 781 790 +hsync -vsync (47.4 kHz d)
> [    64.190] (II) intel(0): Modeline "1152x864"x60.0   81.62  1152 1216
> 1336 1520  864 865 868 895 -hsync +vsync (53.7 kHz d)
> [    64.190] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
> [    64.190] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
> [    64.190] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
> [    64.190] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
> [    64.204] (II) intel(0): EDID for output VGA1
> [    64.204] (II) intel(0): Manufacturer: SAM  Model: 4d3  Serial#:
> 1263088180
> [    64.204] (II) intel(0): Year: 2009  Week: 42
> [    64.204] (II) intel(0): EDID Version: 1.3
> [    64.204] (II) intel(0): Analog Display Input,  Input Voltage Level:
> 0.700/0.300 V
> [    64.204] (II) intel(0): Sync:  Separate  Composite  SyncOnGreen
> [    64.204] (II) intel(0): Max Image Size [cm]: horiz.: 53  vert.: 30
> [    64.204] (II) intel(0): Gamma: 2.20
> [    64.204] (II) intel(0): DPMS capabilities: Off; RGB/Color Display
> [    64.204] (II) intel(0): First detailed timing is preferred mode
> [    64.204] (II) intel(0): redX: 0.649 redY: 0.338   greenX: 0.289
> greenY: 0.609
> [    64.204] (II) intel(0): blueX: 0.146 blueY: 0.070   whiteX: 0.312
> whiteY: 0.329
> [    64.204] (II) intel(0): Supported established timings:
> [    64.204] (II) intel(0): 640x480 at 60Hz
> [    64.204] (II) intel(0): 800x600 at 56Hz
> [    64.204] (II) intel(0): 800x600 at 60Hz
> [    64.204] (II) intel(0): 1024x768 at 60Hz
> [    64.204] (II) intel(0): Manufacturer's mask: 0
> [    64.204] (II) intel(0): Supported standard timings:
> [    64.204] (II) intel(0): #0: hsize: 1280  vsize 800  refresh: 60  vid:
> 129
> [    64.204] (II) intel(0): #1: hsize: 1280  vsize 960  refresh: 60  vid:
> 16513
> [    64.204] (II) intel(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid:
> 32897
> [    64.204] (II) intel(0): #3: hsize: 1440  vsize 900  refresh: 60  vid:
> 149
> [    64.204] (II) intel(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid:
> 16553
> [    64.204] (II) intel(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid:
> 179
> [    64.204] (II) intel(0): Supported detailed timing:
> [    64.204] (II) intel(0): clock: 138.5 MHz   Image Size:  531 x 298 mm
> [    64.204] (II) intel(0): h_active: 1920  h_sync: 1968  h_sync_end 2000
> h_blank_end 2080 h_border: 0
> [    64.204] (II) intel(0): v_active: 1080  v_sync: 1083  v_sync_end 1088
> v_blanking: 1111 v_border: 0
> [    64.204] (II) intel(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H
> max: 81 kHz, PixClock max 175 MHz
> [    64.204] (II) intel(0): Monitor name: SyncMaster
> [    64.204] (II) intel(0): Serial No: H9XSA21685
> [    64.204] (II) intel(0): EDID (in hex):
> [    64.204] (II) intel(0):     00ffffffffffff004c2dd3043432494b
> [    64.204] (II) intel(0):     2a1301030e351e782a6041a6564a9c25
> [    64.204] (II) intel(0):     1250542308008100814081809500a940
> [    64.204] (II) intel(0):     b300010101011a3680a070381f403020
> [    64.204] (II) intel(0):     3500132a2100001a000000fd00383c1e
> [    64.204] (II) intel(0):     5111000a202020202020000000fc0053
> [    64.204] (II) intel(0):     796e634d61737465720a2020000000ff
> [    64.204] (II) intel(0):     00483958534132313638350a2020003d
> [    64.204] (II) intel(0): Printing probed modes for output VGA1
> [    64.204] (II) intel(0): Modeline "1920x1080"x59.9  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [    64.204] (II) intel(0): Modeline "1600x1200"x60.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [    64.204] (II) intel(0): Modeline "1680x1050"x60.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [    64.204] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [    64.204] (II) intel(0): Modeline "1440x900"x59.9  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [    64.204] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [    64.204] (II) intel(0): Modeline "1280x800"x59.8   83.50  1280 1352
> 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
> [    64.204] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [    64.204] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [    64.204] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [    64.204] (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [    64.204] (II) intel(0): Output LVDS1 connected
> [    64.204] (II) intel(0): Output VGA1 connected
> [    64.204] (II) intel(0): Using fuzzy aspect match for initial modes
> [    64.204] (II) intel(0): Output LVDS1 using initial mode 1024x768
> [    64.204] (II) intel(0): Output VGA1 using initial mode 1024x768
> [    64.204] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless
> otherwise stated.
> [    64.204] (II) intel(0): Kernel page flipping support detected, enabling
> [    64.204] (==) intel(0): DPI set to (96, 96)
> [    64.204] (II) Loading sub module "fb"
> [    64.204] (II) LoadModule: "fb"
> [    64.205] (II) Loading /usr/lib/xorg/modules/libfb.so
> [    64.277] (II) Module fb: vendor="X.Org Foundation"
> [    64.277]    compiled for 1.16.4, module version = 1.0.0
> [    64.277]    ABI class: X.Org ANSI C Emulation, version 0.4
> [    64.277] (II) Loading sub module "dri2"
> [    64.277] (II) LoadModule: "dri2"
> [    64.277] (II) Module "dri2" already built-in
> [    64.277] (II) UnloadModule: "modesetting"
> [    64.277] (II) Unloading modesetting
> [    64.277] (==) Depth 24 pixmap format is 32 bpp
> [    64.324] (II) intel(0): [DRI2] Setup complete
> [    64.324] (II) intel(0): [DRI2]   DRI driver: i965
> [    64.324] (II) intel(0): Allocated new frame buffer 1024x768 stride
> 4096, tiled
> [    64.420] (II) UXA(0): Driver registered support for the following
> operations:
> [    64.420] (II)         solid
> [    64.420] (II)         copy
> [    64.420] (II)         composite (RENDER acceleration)
> [    64.420] (II)         put_image
> [    64.420] (II)         get_image
> [    64.420] (==) intel(0): Backing store enabled
> [    64.421] (==) intel(0): Silken mouse enabled
> [    64.462] (II) intel(0): Initializing HW Cursor
> [    64.462] (II) intel(0): RandR 1.2 enabled, ignore the following RandR
> disabled message.
> [    64.503] (==) intel(0): DPMS enabled
> [    64.503] (==) intel(0): Intel XvMC decoder enabled
> [    64.503] (II) intel(0): Set up textured video
> [    64.503] (II) intel(0): [XvMC] xvmc_vld driver initialized.
> [    64.503] (II) intel(0): direct rendering: DRI2 Enabled
> [    64.503] (==) intel(0): hotplug detection: "enabled"
> [    65.415] (--) RandR disabled
> [    65.587] (II) SELinux: Disabled on system
> [    68.158] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
> [    68.158] (II) AIGLX: enabled GLX_ARB_create_context
> [    68.158] (II) AIGLX: enabled GLX_ARB_create_context_profile
> [    68.158] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
> [    68.158] (II) AIGLX: enabled GLX_INTEL_swap_event
> [    68.158] (II) AIGLX: enabled GLX_SGI_swap_control and
> GLX_MESA_swap_control
> [    68.158] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
> [    68.158] (II) AIGLX: enabled GLX_ARB_fbconfig_float
> [    68.158] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer
> objects
> [    68.158] (II) AIGLX: enabled GLX_ARB_create_context_robustness
> [    68.158] (II) AIGLX: Loaded and initialized i965
> [    68.158] (II) GLX: Initialized DRI2 GL provider for screen 0
> [    68.158] (II) intel(0): Setting screen physical size to 270 x 203
> [    72.800] (II) config/udev: Adding input device Power Button
> (/dev/input/event7)
> [    72.800] (**) Power Button: Applying InputClass "evdev keyboard
> catchall"
> [    72.800] (II) LoadModule: "evdev"
> [    72.800] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
> [    73.056] (II) Module evdev: vendor="X.Org Foundation"
> [    73.056]    compiled for 1.16.0, module version = 2.9.0
> [    73.056]    Module class: X.Org XInput Driver
> [    73.056]    ABI class: X.Org XInput driver, version 21.0
> [    73.056] (II) Using input driver 'evdev' for 'Power Button'
> [    73.056] (**) Power Button: always reports core events
> [    73.056] (**) evdev: Power Button: Device: "/dev/input/event7"
> [    73.056] (--) evdev: Power Button: Vendor 0 Product 0x1
> [    73.056] (--) evdev: Power Button: Found keys
> [    73.056] (II) evdev: Power Button: Configuring as keyboard
> [    73.056] (**) Option "config_info"
> "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event7"
> [    73.056] (II) XINPUT: Adding extended input device "Power Button"
> (type: KEYBOARD, id 6)
> [    73.056] (**) Option "xkb_rules" "evdev"
> [    73.056] (**) Option "xkb_model" "pc105"
> [    73.056] (**) Option "xkb_layout" "de"
> [    73.056] (**) Option "xkb_variant" "nodeadkeys"
> [    73.056] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.214] (II) config/udev: Adding input device Video Bus
> (/dev/input/event14)
> [    73.214] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
> [    73.214] (II) Using input driver 'evdev' for 'Video Bus'
> [    73.214] (**) Video Bus: always reports core events
> [    73.214] (**) evdev: Video Bus: Device: "/dev/input/event14"
> [    73.214] (--) evdev: Video Bus: Vendor 0 Product 0x6
> [    73.214] (--) evdev: Video Bus: Found keys
> [    73.214] (II) evdev: Video Bus: Configuring as keyboard
> [    73.214] (**) Option "config_info"
> "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input15/event14"
> [    73.214] (II) XINPUT: Adding extended input device "Video Bus" (type:
> KEYBOARD, id 7)
> [    73.214] (**) Option "xkb_rules" "evdev"
> [    73.214] (**) Option "xkb_model" "pc105"
> [    73.214] (**) Option "xkb_layout" "de"
> [    73.214] (**) Option "xkb_variant" "nodeadkeys"
> [    73.214] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.215] (II) config/udev: Adding input device Video Bus
> (/dev/input/event13)
> [    73.215] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
> [    73.215] (II) Using input driver 'evdev' for 'Video Bus'
> [    73.215] (**) Video Bus: always reports core events
> [    73.215] (**) evdev: Video Bus: Device: "/dev/input/event13"
> [    73.215] (--) evdev: Video Bus: Vendor 0 Product 0x6
> [    73.215] (--) evdev: Video Bus: Found keys
> [    73.215] (II) evdev: Video Bus: Configuring as keyboard
> [    73.215] (**) Option "config_info"
> "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:14/LNXVIDEO:00/input/input14/event13"
> [    73.215] (II) XINPUT: Adding extended input device "Video Bus" (type:
> KEYBOARD, id 8)
> [    73.215] (**) Option "xkb_rules" "evdev"
> [    73.215] (**) Option "xkb_model" "pc105"
> [    73.215] (**) Option "xkb_layout" "de"
> [    73.215] (**) Option "xkb_variant" "nodeadkeys"
> [    73.215] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.215] (II) config/udev: Adding input device Power Button
> (/dev/input/event5)
> [    73.215] (**) Power Button: Applying InputClass "evdev keyboard
> catchall"
> [    73.215] (II) Using input driver 'evdev' for 'Power Button'
> [    73.215] (**) Power Button: always reports core events
> [    73.215] (**) evdev: Power Button: Device: "/dev/input/event5"
> [    73.216] (--) evdev: Power Button: Vendor 0 Product 0x1
> [    73.216] (--) evdev: Power Button: Found keys
> [    73.216] (II) evdev: Power Button: Configuring as keyboard
> [    73.216] (**) Option "config_info"
> "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event5"
> [    73.216] (II) XINPUT: Adding extended input device "Power Button"
> (type: KEYBOARD, id 9)
> [    73.216] (**) Option "xkb_rules" "evdev"
> [    73.216] (**) Option "xkb_model" "pc105"
> [    73.216] (**) Option "xkb_layout" "de"
> [    73.216] (**) Option "xkb_variant" "nodeadkeys"
> [    73.216] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.216] (II) config/udev: Adding input device Lid Switch
> (/dev/input/event4)
> [    73.216] (II) No input driver specified, ignoring this device.
> [    73.216] (II) This device may have been added with another device file.
> [    73.216] (II) config/udev: Adding input device Sleep Button
> (/dev/input/event6)
> [    73.217] (**) Sleep Button: Applying InputClass "evdev keyboard
> catchall"
> [    73.217] (II) Using input driver 'evdev' for 'Sleep Button'
> [    73.217] (**) Sleep Button: always reports core events
> [    73.217] (**) evdev: Sleep Button: Device: "/dev/input/event6"
> [    73.217] (--) evdev: Sleep Button: Vendor 0 Product 0x3
> [    73.217] (--) evdev: Sleep Button: Found keys
> [    73.217] (II) evdev: Sleep Button: Configuring as keyboard
> [    73.217] (**) Option "config_info"
> "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7/event6"
> [    73.217] (II) XINPUT: Adding extended input device "Sleep Button"
> (type: KEYBOARD, id 10)
> [    73.217] (**) Option "xkb_rules" "evdev"
> [    73.217] (**) Option "xkb_model" "pc105"
> [    73.217] (**) Option "xkb_layout" "de"
> [    73.217] (**) Option "xkb_variant" "nodeadkeys"
> [    73.217] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.218] (II) config/udev: Adding input device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 ) (/dev/input/event1)
> [    73.218] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): Applying InputClass "evdev keyboard catchall"
> [    73.218] (II) Using input driver 'evdev' for 'Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )'
> [    73.218] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): always reports core events
> [    73.218] (**) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Device: "/dev/input/event1"
> [    73.218] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Vendor 0x4b3 Product 0x301b
> [    73.218] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Found keys
> [    73.218] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Configuring as keyboard
> [    73.218] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.1/3-4.2.1:1.0/0003:04B3:301B.0001/input/input2/event1"
> [    73.218] (II) XINPUT: Adding extended input device "Lite-On Technology
> USB Productivity Option Keyboard( has the hub in # 1 )" (type: KEYBOARD, id
> 11)
> [    73.218] (**) Option "xkb_rules" "evdev"
> [    73.218] (**) Option "xkb_model" "pc105"
> [    73.218] (**) Option "xkb_layout" "de"
> [    73.218] (**) Option "xkb_variant" "nodeadkeys"
> [    73.218] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.219] (II) config/udev: Adding input device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 ) (/dev/input/event2)
> [    73.219] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): Applying InputClass "evdev keyboard catchall"
> [    73.219] (II) Using input driver 'evdev' for 'Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )'
> [    73.219] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): always reports core events
> [    73.219] (**) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Device: "/dev/input/event2"
> [    73.219] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Vendor 0x4b3 Product 0x301b
> [    73.219] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Found keys
> [    73.219] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Configuring as keyboard
> [    73.219] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.1/3-4.2.1:1.1/0003:04B3:301B.0002/input/input3/event2"
> [    73.219] (II) XINPUT: Adding extended input device "Lite-On Technology
> USB Productivity Option Keyboard( has the hub in # 1 )" (type: KEYBOARD, id
> 12)
> [    73.219] (**) Option "xkb_rules" "evdev"
> [    73.219] (**) Option "xkb_model" "pc105"
> [    73.219] (**) Option "xkb_layout" "de"
> [    73.219] (**) Option "xkb_variant" "nodeadkeys"
> [    73.219] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.219] (II) config/udev: Adding input device DELL DELL USB Laser
> Mouse (/dev/input/event3)
> [    73.219] (**) DELL DELL USB Laser Mouse: Applying InputClass "evdev
> pointer catchall"
> [    73.219] (II) Using input driver 'evdev' for 'DELL DELL USB Laser
> Mouse'
> [    73.219] (**) DELL DELL USB Laser Mouse: always reports core events
> [    73.219] (**) evdev: DELL DELL USB Laser Mouse: Device:
> "/dev/input/event3"
> [    73.220] (--) evdev: DELL DELL USB Laser Mouse: Vendor 0x46d Product
> 0xc063
> [    73.220] (--) evdev: DELL DELL USB Laser Mouse: Found 12 mouse buttons
> [    73.220] (--) evdev: DELL DELL USB Laser Mouse: Found scroll wheel(s)
> [    73.220] (--) evdev: DELL DELL USB Laser Mouse: Found relative axes
> [    73.220] (--) evdev: DELL DELL USB Laser Mouse: Found x and y relative
> axes
> [    73.220] (II) evdev: DELL DELL USB Laser Mouse: Configuring as mouse
> [    73.220] (II) evdev: DELL DELL USB Laser Mouse: Adding scrollwheel
> support
> [    73.220] (**) evdev: DELL DELL USB Laser Mouse: YAxisMapping: buttons
> 4 and 5
> [    73.220] (**) evdev: DELL DELL USB Laser Mouse: EmulateWheelButton: 4,
> EmulateWheelInertia: 10, EmulateWheelTimeout: 200
> [    73.220] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.2/3-4.2.2:1.0/0003:046D:C063.0003/input/input4/event3"
> [    73.220] (II) XINPUT: Adding extended input device "DELL DELL USB
> Laser Mouse" (type: MOUSE, id 13)
> [    73.220] (II) evdev: DELL DELL USB Laser Mouse: initialized for
> relative axes.
> [    73.220] (**) DELL DELL USB Laser Mouse: (accel) keeping acceleration
> scheme 1
> [    73.220] (**) DELL DELL USB Laser Mouse: (accel) acceleration profile 0
> [    73.220] (**) DELL DELL USB Laser Mouse: (accel) acceleration factor:
> 2.000
> [    73.220] (**) DELL DELL USB Laser Mouse: (accel) acceleration
> threshold: 4
> [    73.220] (II) config/udev: Adding input device DELL DELL USB Laser
> Mouse (/dev/input/mouse0)
> [    73.220] (II) No input driver specified, ignoring this device.
> [    73.220] (II) This device may have been added with another device file.
> [    73.221] (II) config/udev: Adding input device HDA Digital PCBeep
> (/dev/input/event8)
> [    73.221] (II) No input driver specified, ignoring this device.
> [    73.221] (II) This device may have been added with another device file.
> [    73.221] (II) config/udev: Adding input device HDA Intel PCH Dock Mic
> (/dev/input/event9)
> [    73.221] (II) No input driver specified, ignoring this device.
> [    73.221] (II) This device may have been added with another device file.
> [    73.221] (II) config/udev: Adding input device HDA Intel PCH Headset
> Mic (/dev/input/event10)
> [    73.221] (II) No input driver specified, ignoring this device.
> [    73.221] (II) This device may have been added with another device file.
> [    73.222] (II) config/udev: Adding input device HDA Intel PCH Dock Line
> Out (/dev/input/event11)
> [    73.222] (II) No input driver specified, ignoring this device.
> [    73.222] (II) This device may have been added with another device file.
> [    73.222] (II) config/udev: Adding input device HDA Intel PCH Headphone
> (/dev/input/event12)
> [    73.222] (II) No input driver specified, ignoring this device.
> [    73.222] (II) This device may have been added with another device file.
> [    73.222] (II) config/udev: Adding input device AT Translated Set 2
> keyboard (/dev/input/event0)
> [    73.222] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev
> keyboard catchall"
> [    73.222] (II) Using input driver 'evdev' for 'AT Translated Set 2
> keyboard'
> [    73.222] (**) AT Translated Set 2 keyboard: always reports core events
> [    73.222] (**) evdev: AT Translated Set 2 keyboard: Device:
> "/dev/input/event0"
> [    73.222] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product
> 0x1
> [    73.222] (--) evdev: AT Translated Set 2 keyboard: Found keys
> [    73.222] (II) evdev: AT Translated Set 2 keyboard: Configuring as
> keyboard
> [    73.222] (**) Option "config_info"
> "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
> [    73.222] (II) XINPUT: Adding extended input device "AT Translated Set
> 2 keyboard" (type: KEYBOARD, id 14)
> [    73.222] (**) Option "xkb_rules" "evdev"
> [    73.222] (**) Option "xkb_model" "pc105"
> [    73.222] (**) Option "xkb_layout" "de"
> [    73.222] (**) Option "xkb_variant" "nodeadkeys"
> [    73.222] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.223] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint
> TouchPad (/dev/input/event17)
> [    73.223] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass
> "evdev touchpad catchall"
> [    73.223] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass
> "Multitouch Touchpad"
> [    73.223] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass
> "touchpad catchall"
> [    73.223] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass
> "Default clickpad buttons"
> [    73.223] (II) LoadModule: "synaptics"
> [    73.223] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
> [    73.307] (II) Module synaptics: vendor="X.Org Foundation"
> [    73.307]    compiled for 1.16.0.901, module version = 1.8.99
> [    73.307]    Module class: X.Org XInput Driver
> [    73.307]    ABI class: X.Org XInput driver, version 21.0
> [    73.307] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS
> DualPoint TouchPad'
> [    73.307] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core
> events
> [    73.307] (**) Option "Device" "/dev/input/event17"
> [    73.364] (II) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: ignoring
> touch events for semi-multitouch device
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: x-axis
> range 0 - 2000 (res 0)
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: y-axis
> range 0 - 1400 (res 0)
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: pressure
> range 0 - 127
> [    73.364] (II) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: device does
> not report finger width.
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: buttons:
> left right middle double triple
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: Vendor 0x2
> Product 0x8
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: invalid
> finger width range.  defaulting to 0 - 15
> [    73.364] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: touchpad
> found
> [    73.364] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core
> events
> [    73.404] (**) Option "config_info"
> "udev:/sys/devices/platform/i8042/serio1/input/input17/event17"
> [    73.404] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS
> DualPoint TouchPad" (type: TOUCHPAD, id 15)
> [    73.404] (**) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: (accel)
> MinSpeed is now constant deceleration 2.5
> [    73.404] (**) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: (accel)
> MaxSpeed is now 1.75
> [    73.404] (**) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: (accel)
> AccelFactor is now 0.082
> [    73.404] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) keeping
> acceleration scheme 1
> [    73.404] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration
> profile 1
> [    73.404] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration
> factor: 2.000
> [    73.404] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration
> threshold: 4
> [    73.404] (--) synaptics: AlpsPS/2 ALPS DualPoint TouchPad: touchpad
> found
> [    73.404] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint
> TouchPad (/dev/input/mouse2)
> [    73.405] (**) AlpsPS/2 ALPS DualPoint TouchPad: Ignoring device from
> InputClass "touchpad ignore duplicates"
> [    73.405] (II) config/udev: Adding input device DualPoint Stick
> (/dev/input/event16)
> [    73.405] (**) DualPoint Stick: Applying InputClass "evdev pointer
> catchall"
> [    73.405] (II) Using input driver 'evdev' for 'DualPoint Stick'
> [    73.405] (**) DualPoint Stick: always reports core events
> [    73.405] (**) evdev: DualPoint Stick: Device: "/dev/input/event16"
> [    73.405] (--) evdev: DualPoint Stick: Vendor 0x2 Product 0x8
> [    73.405] (--) evdev: DualPoint Stick: Found 3 mouse buttons
> [    73.405] (--) evdev: DualPoint Stick: Found relative axes
> [    73.405] (--) evdev: DualPoint Stick: Found x and y relative axes
> [    73.405] (II) evdev: DualPoint Stick: Configuring as mouse
> [    73.405] (**) evdev: DualPoint Stick: YAxisMapping: buttons 4 and 5
> [    73.405] (**) evdev: DualPoint Stick: EmulateWheelButton: 4,
> EmulateWheelInertia: 10, EmulateWheelTimeout: 200
> [    73.405] (**) Option "config_info"
> "udev:/sys/devices/platform/i8042/serio1/input/input18/event16"
> [    73.405] (II) XINPUT: Adding extended input device "DualPoint Stick"
> (type: MOUSE, id 16)
> [    73.405] (II) evdev: DualPoint Stick: initialized for relative axes.
> [    73.405] (**) DualPoint Stick: (accel) keeping acceleration scheme 1
> [    73.405] (**) DualPoint Stick: (accel) acceleration profile 0
> [    73.405] (**) DualPoint Stick: (accel) acceleration factor: 2.000
> [    73.405] (**) DualPoint Stick: (accel) acceleration threshold: 4
> [    73.406] (II) config/udev: Adding input device DualPoint Stick
> (/dev/input/mouse1)
> [    73.406] (II) No input driver specified, ignoring this device.
> [    73.406] (II) This device may have been added with another device file.
> [    73.406] (II) config/udev: Adding input device PC Speaker
> (/dev/input/event15)
> [    73.406] (II) No input driver specified, ignoring this device.
> [    73.406] (II) This device may have been added with another device file.
> [    73.406] (II) config/udev: Adding input device Dell WMI hotkeys
> (/dev/input/event18)
> [    73.406] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard
> catchall"
> [    73.406] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
> [    73.406] (**) Dell WMI hotkeys: always reports core events
> [    73.406] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event18"
> [    73.407] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
> [    73.407] (--) evdev: Dell WMI hotkeys: Found keys
> [    73.407] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
> [    73.407] (**) Option "config_info"
> "udev:/sys/devices/virtual/input/input19/event18"
> [    73.407] (II) XINPUT: Adding extended input device "Dell WMI hotkeys"
> (type: KEYBOARD, id 17)
> [    73.407] (**) Option "xkb_rules" "evdev"
> [    73.407] (**) Option "xkb_model" "pc105"
> [    73.407] (**) Option "xkb_layout" "de"
> [    73.407] (**) Option "xkb_variant" "nodeadkeys"
> [    73.407] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [    73.407] (II) config/udev: Adding input device ACPI Virtual Keyboard
> Device (/dev/input/event19)
> [    73.407] (**) ACPI Virtual Keyboard Device: Applying InputClass "evdev
> keyboard catchall"
> [    73.407] (II) Using input driver 'evdev' for 'ACPI Virtual Keyboard
> Device'
> [    73.407] (**) ACPI Virtual Keyboard Device: always reports core events
> [    73.407] (**) evdev: ACPI Virtual Keyboard Device: Device:
> "/dev/input/event19"
> [    73.407] (--) evdev: ACPI Virtual Keyboard Device: Vendor 0 Product 0
> [    73.407] (--) evdev: ACPI Virtual Keyboard Device: Found keys
> [    73.407] (II) evdev: ACPI Virtual Keyboard Device: Configuring as
> keyboard
> [    73.407] (**) Option "config_info"
> "udev:/sys/devices/virtual/input/input20/event19"
> [    73.407] (II) XINPUT: Adding extended input device "ACPI Virtual
> Keyboard Device" (type: KEYBOARD, id 18)
> [    73.407] (**) Option "xkb_rules" "evdev"
> [    73.407] (**) Option "xkb_model" "pc105"
> [    73.407] (**) Option "xkb_layout" "de"
> [    73.407] (**) Option "xkb_variant" "nodeadkeys"
> [    73.407] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [  5581.698] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5581.698] (II) intel(0): Printing DDC gathered Modelines:
> [  5581.698] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5581.698] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5592.204] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5592.204] (II) intel(0): Printing DDC gathered Modelines:
> [  5592.204] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5592.204] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5596.989] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5596.989] (II) intel(0): Printing DDC gathered Modelines:
> [  5596.989] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5596.989] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5597.003] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5597.003] (II) intel(0): Printing DDC gathered Modelines:
> [  5597.003] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5597.003] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5599.855] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5599.855] (II) intel(0): Printing DDC gathered Modelines:
> [  5599.855] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5599.855] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5599.872] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5599.872] (II) intel(0): Printing DDC gathered Modelines:
> [  5599.872] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5599.872] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5599.909] (II) intel(0): Allocated new frame buffer 1600x900 stride
> 6656, tiled
> [  5600.777] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.777] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.777] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.777] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5600.790] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.790] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.790] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.790] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5600.805] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.805] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.805] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.805] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5600.818] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.818] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.818] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.818] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5600.831] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.831] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.831] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.831] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5600.845] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5600.845] (II) intel(0): Printing DDC gathered Modelines:
> [  5600.845] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5600.845] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5602.057] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5602.057] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.057] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5602.057] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5602.074] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5602.074] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.074] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5602.074] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5602.385] (II) intel(0): Allocated new frame buffer 1920x1080 stride
> 7680, tiled
> [  5602.410] (II) intel(0): EDID vendor "LGD", prod id 735
> [  5602.410] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.410] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [  5602.410] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [  5602.437] (II) intel(0): EDID vendor "SAM", prod id 1235
> [  5602.437] (II) intel(0): Using hsync ranges from config file
> [  5602.437] (II) intel(0): Using vrefresh ranges from config file
> [  5602.437] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.437] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [  5602.437] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [  5602.437] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [  5602.437] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [  5602.437] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [  5602.437] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [  5602.437] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [  5602.437] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [  5602.437] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [  5602.437] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [  5602.437] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [  5602.451] (II) intel(0): EDID vendor "SAM", prod id 1235
> [  5602.451] (II) intel(0): Using hsync ranges from config file
> [  5602.451] (II) intel(0): Using vrefresh ranges from config file
> [  5602.451] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.451] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [  5602.451] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [  5602.451] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [  5602.451] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [  5602.451] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [  5602.451] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [  5602.451] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [  5602.451] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [  5602.451] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [  5602.451] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [  5602.451] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [  5602.464] (II) intel(0): EDID vendor "SAM", prod id 1235
> [  5602.464] (II) intel(0): Using hsync ranges from config file
> [  5602.464] (II) intel(0): Using vrefresh ranges from config file
> [  5602.464] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.464] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [  5602.464] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [  5602.464] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [  5602.464] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [  5602.464] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [  5602.464] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [  5602.464] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [  5602.464] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [  5602.464] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [  5602.464] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [  5602.464] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [  5602.478] (II) intel(0): EDID vendor "SAM", prod id 1235
> [  5602.478] (II) intel(0): Using hsync ranges from config file
> [  5602.478] (II) intel(0): Using vrefresh ranges from config file
> [  5602.478] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.478] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [  5602.478] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [  5602.478] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [  5602.478] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [  5602.478] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [  5602.478] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [  5602.478] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [  5602.478] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [  5602.478] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [  5602.478] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [  5602.478] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [  5602.491] (II) intel(0): EDID vendor "SAM", prod id 1235
> [  5602.491] (II) intel(0): Using hsync ranges from config file
> [  5602.491] (II) intel(0): Using vrefresh ranges from config file
> [  5602.491] (II) intel(0): Printing DDC gathered Modelines:
> [  5602.491] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [  5602.491] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [  5602.491] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [  5602.491] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [  5602.491] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [  5602.491] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [  5602.491] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [  5602.491] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [  5602.491] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [  5602.491] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [  5602.491] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [  9056.365] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [  9056.365] (II) config/udev: Adding drm device (/dev/dri/card1)
> [  9056.365] (II) xfree86: Adding drm device (/dev/dri/card1)
> [  9056.365] (II) LoadModule: "modesetting"
> [  9056.365] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
> [  9056.365] (II) Module modesetting: vendor="X.Org Foundation"
> [  9056.365]    compiled for 1.15.99.904, module version = 0.9.0
> [  9056.365]    Module class: X.Org Video Driver
> [  9056.365]    ABI class: X.Org Video Driver, version 18.0
> [  9056.365] xf86: found device 1
> [ 11096.160] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 11132.769] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 11132.769] (II) config/udev: Adding drm device (/dev/dri/card1)
> [ 11132.769] (II) xfree86: Adding drm device (/dev/dri/card1)
> [ 11132.820] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 11172.969] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 11172.969] (II) config/udev: Adding drm device (/dev/dri/card1)
> [ 11172.969] (II) xfree86: Adding drm device (/dev/dri/card1)
> [ 11172.969] (II) LoadModule: "modesetting"
> [ 11172.970] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
> [ 11172.970] (II) Module modesetting: vendor="X.Org Foundation"
> [ 11172.970]    compiled for 1.15.99.904, module version = 0.9.0
> [ 11172.970]    Module class: X.Org Video Driver
> [ 11172.970]    ABI class: X.Org Video Driver, version 18.0
> [ 11172.970] (II) UnloadModule: "modesetting"
> [ 11172.970] (II) Unloading modesetting
> [ 11172.970] (II) Failed to load module "modesetting" (already loaded,
> 32549)
> [ 11172.970] xf86: found device 1
> [ 12376.055] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 12392.653] removing GPU device
> /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
> [ 12392.653] (II) config/udev: Adding drm device (/dev/dri/card1)
> [ 12392.653] (II) xfree86: Adding drm device (/dev/dri/card1)
> [ 12392.653] (II) LoadModule: "modesetting"
> [ 12392.653] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
> [ 12392.653] (II) Module modesetting: vendor="X.Org Foundation"
> [ 12392.653]    compiled for 1.15.99.904, module version = 0.9.0
> [ 12392.653]    Module class: X.Org Video Driver
> [ 12392.653]    ABI class: X.Org Video Driver, version 18.0
> [ 12392.653] (II) UnloadModule: "modesetting"
> [ 12392.653] (II) Unloading modesetting
> [ 12392.653] (II) Failed to load module "modesetting" (already loaded,
> 32549)
> [ 12392.653] xf86: found device 1
> [ 22437.884] (II) intel(0): EDID vendor "SAM", prod id 1235
> [ 22437.884] (II) intel(0): Using hsync ranges from config file
> [ 22437.884] (II) intel(0): Using vrefresh ranges from config file
> [ 22437.884] (II) intel(0): Printing DDC gathered Modelines:
> [ 22437.884] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [ 22437.884] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 22437.884] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [ 22437.884] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [ 22437.884] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [ 22437.901] (II) intel(0): EDID vendor "SAM", prod id 1235
> [ 22437.901] (II) intel(0): Using hsync ranges from config file
> [ 22437.901] (II) intel(0): Using vrefresh ranges from config file
> [ 22437.901] (II) intel(0): Printing DDC gathered Modelines:
> [ 22437.901] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [ 22437.901] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 22437.901] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [ 22437.901] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [ 22437.901] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [ 22437.937] (II) intel(0): Allocated new frame buffer 1600x900 stride
> 6656, tiled
> [ 22437.967] (II) intel(0): EDID vendor "SAM", prod id 1235
> [ 22437.967] (II) intel(0): Using hsync ranges from config file
> [ 22437.967] (II) intel(0): Using vrefresh ranges from config file
> [ 22437.967] (II) intel(0): Printing DDC gathered Modelines:
> [ 22437.967] (II) intel(0): Modeline "1920x1080"x0.0  138.50  1920 1968
> 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
> [ 22437.967] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968
> 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 22437.967] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896
> 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
> [ 22437.967] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752
> 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048
> 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1280x800"x0.0   83.50  1280 1352
> 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1280x960"x0.0  108.00  1280 1376
> 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328
> 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1440x900"x0.0  106.50  1440 1520
> 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1600x1200"x0.0  162.00  1600 1664
> 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
> [ 22437.967] (II) intel(0): Modeline "1680x1050"x0.0  146.25  1680 1784
> 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
> [ 22437.969] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22437.969] (II) intel(0): Printing DDC gathered Modelines:
> [ 22437.969] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22437.969] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22437.992] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22437.992] (II) intel(0): Printing DDC gathered Modelines:
> [ 22437.992] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22437.992] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22438.007] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22438.007] (II) intel(0): Printing DDC gathered Modelines:
> [ 22438.007] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22438.007] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22438.040] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22438.040] (II) intel(0): Printing DDC gathered Modelines:
> [ 22438.040] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22438.040] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22438.056] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22438.056] (II) intel(0): Printing DDC gathered Modelines:
> [ 22438.056] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22438.056] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22440.246] (II) config/udev: removing device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )
> [ 22440.276] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Close
> [ 22440.276] (II) UnloadModule: "evdev"
> [ 22440.293] (II) config/udev: removing device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )
> [ 22440.308] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Close
> [ 22440.308] (II) UnloadModule: "evdev"
> [ 22440.396] (II) config/udev: removing device DELL DELL USB Laser Mouse
> [ 22440.425] (II) evdev: DELL DELL USB Laser Mouse: Close
> [ 22440.425] (II) UnloadModule: "evdev"
> [ 22442.290] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22442.290] (II) intel(0): Printing DDC gathered Modelines:
> [ 22442.290] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22442.290] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22442.293] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22442.293] (II) intel(0): Printing DDC gathered Modelines:
> [ 22442.293] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22442.293] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 22442.295] (II) intel(0): EDID vendor "LGD", prod id 735
> [ 22442.295] (II) intel(0): Printing DDC gathered Modelines:
> [ 22442.295] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 1774  900 903 907 912 +hsync -vsync (54.7 kHz eP)
> [ 22442.295] (II) intel(0): Modeline "1600x900"x0.0   97.12  1600 1648
> 1696 2370  900 903 907 1024 +hsync -vsync (41.0 kHz e)
> [ 23042.221] (II) config/udev: Adding input device DELL DELL USB Laser
> Mouse (/dev/input/mouse0)
> [ 23042.221] (II) No input driver specified, ignoring this device.
> [ 23042.221] (II) This device may have been added with another device file.
> [ 23042.231] (II) config/udev: Adding input device DELL DELL USB Laser
> Mouse (/dev/input/event3)
> [ 23042.231] (**) DELL DELL USB Laser Mouse: Applying InputClass "evdev
> pointer catchall"
> [ 23042.231] (II) Using input driver 'evdev' for 'DELL DELL USB Laser
> Mouse'
> [ 23042.231] (**) DELL DELL USB Laser Mouse: always reports core events
> [ 23042.231] (**) evdev: DELL DELL USB Laser Mouse: Device:
> "/dev/input/event3"
> [ 23042.231] (--) evdev: DELL DELL USB Laser Mouse: Vendor 0x46d Product
> 0xc063
> [ 23042.231] (--) evdev: DELL DELL USB Laser Mouse: Found 12 mouse buttons
> [ 23042.231] (--) evdev: DELL DELL USB Laser Mouse: Found scroll wheel(s)
> [ 23042.231] (--) evdev: DELL DELL USB Laser Mouse: Found relative axes
> [ 23042.231] (--) evdev: DELL DELL USB Laser Mouse: Found x and y relative
> axes
> [ 23042.231] (II) evdev: DELL DELL USB Laser Mouse: Configuring as mouse
> [ 23042.231] (II) evdev: DELL DELL USB Laser Mouse: Adding scrollwheel
> support
> [ 23042.231] (**) evdev: DELL DELL USB Laser Mouse: YAxisMapping: buttons
> 4 and 5
> [ 23042.231] (**) evdev: DELL DELL USB Laser Mouse: EmulateWheelButton: 4,
> EmulateWheelInertia: 10, EmulateWheelTimeout: 200
> [ 23042.231] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.2/3-4.2.2:1.0/0003:046D:C063.0006/input/input23/event3"
> [ 23042.231] (II) XINPUT: Adding extended input device "DELL DELL USB
> Laser Mouse" (type: MOUSE, id 11)
> [ 23042.231] (II) evdev: DELL DELL USB Laser Mouse: initialized for
> relative axes.
> [ 23042.231] (**) DELL DELL USB Laser Mouse: (accel) keeping acceleration
> scheme 1
> [ 23042.231] (**) DELL DELL USB Laser Mouse: (accel) acceleration profile 0
> [ 23042.231] (**) DELL DELL USB Laser Mouse: (accel) acceleration factor:
> 2.000
> [ 23042.231] (**) DELL DELL USB Laser Mouse: (accel) acceleration
> threshold: 4
> [ 23042.246] (II) config/udev: Adding input device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 ) (/dev/input/event1)
> [ 23042.246] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): Applying InputClass "evdev keyboard catchall"
> [ 23042.246] (II) Using input driver 'evdev' for 'Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )'
> [ 23042.246] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): always reports core events
> [ 23042.246] (**) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Device: "/dev/input/event1"
> [ 23042.247] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Vendor 0x4b3 Product 0x301b
> [ 23042.247] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Found keys
> [ 23042.247] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Configuring as keyboard
> [ 23042.247] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.1/3-4.2.1:1.0/0003:04B3:301B.0004/input/input21/event1"
> [ 23042.247] (II) XINPUT: Adding extended input device "Lite-On Technology
> USB Productivity Option Keyboard( has the hub in # 1 )" (type: KEYBOARD, id
> 12)
> [ 23042.247] (**) Option "xkb_rules" "evdev"
> [ 23042.247] (**) Option "xkb_model" "pc105"
> [ 23042.247] (**) Option "xkb_layout" "de"
> [ 23042.247] (**) Option "xkb_variant" "nodeadkeys"
> [ 23042.247] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [ 23042.256] (II) config/udev: Adding input device Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 ) (/dev/input/event2)
> [ 23042.256] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): Applying InputClass "evdev keyboard catchall"
> [ 23042.256] (II) Using input driver 'evdev' for 'Lite-On Technology USB
> Productivity Option Keyboard( has the hub in # 1 )'
> [ 23042.256] (**) Lite-On Technology USB Productivity Option Keyboard( has
> the hub in # 1 ): always reports core events
> [ 23042.256] (**) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Device: "/dev/input/event2"
> [ 23042.256] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Vendor 0x4b3 Product 0x301b
> [ 23042.256] (--) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Found keys
> [ 23042.256] (II) evdev: Lite-On Technology USB Productivity Option
> Keyboard( has the hub in # 1 ): Configuring as keyboard
> [ 23042.256] (**) Option "config_info"
> "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.2/3-4.2.1/3-4.2.1:1.1/0003:04B3:301B.0005/input/input22/event2"
> [ 23042.256] (II) XINPUT: Adding extended input device "Lite-On Technology
> USB Productivity Option Keyboard( has the hub in # 1 )" (type: KEYBOARD, id
> 13)
> [ 23042.256] (**) Option "xkb_rules" "evdev"
> [ 23042.256] (**) Option "xkb_model" "pc105"
> [ 23042.256] (**) Option "xkb_layout" "de"
> [ 23042.256] (**) Option "xkb_variant" "nodeadkeys"
> [ 23042.256] (**) Option "xkb_options"
> "compose:menu,terminate:ctrl_alt_bksp"
> [ 23044.702] (II) intel
> _______________________________________________
> pkg-nvidia-devel mailing list
> pkg-nvidia-devel at lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-nvidia-devel
> ...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-nvidia-devel/attachments/20150724/00ce7472/attachment-0001.html>


More information about the pkg-nvidia-devel mailing list