[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#794556: xserver-xorg-input-evdev: Add mouse click debounce



Package: xserver-xorg-input-evdev
Version: 1:2.9.0-2.1
Severity: normal

Dear Maintainer,

Please, consider adding mouse click debounce. Alot of mouse on the market are
broken and cheap. It causes alot of issue to my users. I've test the following
patch with recent version of the package and it's working properly.

I recommend to set a good default for debounce delay: 20

 From http://lists.x.org/archives/xorg-devel/2012-August/033225.html

 include/evdev-properties.h |    3 +
 src/Makefile.am            |    1 +
 src/debounce.c             |  198 ++++++++++++++++++++++++++++++++++++++++++++
 src/evdev.c                |    6 ++
 src/evdev.h                |   17 ++++
 5 files changed, 225 insertions(+), 0 deletions(-)
 create mode 100644 src/debounce.c

diff --git a/include/evdev-properties.h b/include/evdev-properties.h
index 745a1ba..4c169c3 100644
--- a/include/evdev-properties.h
+++ b/include/evdev-properties.h
@@ -87,4 +87,7 @@
 */
 #define EVDEV_PROP_FUNCTION_KEYS "Evdev Function Keys"

+/* CARD32 */
+#define EVDEV_PROP_DEBOUNCE_DELAY "Evdev Debounce Delay"
+
 #endif
diff --git a/src/Makefile.am b/src/Makefile.am
index da76540..4f51e8f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -39,6 +39,7 @@ AM_CPPFLAGS =-I$(top_srcdir)/include
                                emuThird.c \
                                emuWheel.c \
                                draglock.c \
+                               debounce.c \
                                apple.c \
                                axis_labels.h

diff --git a/src/debounce.c b/src/debounce.c
new file mode 100644
index 0000000..cda703d
--- /dev/null
+++ b/src/debounce.c
@@ -0,0 +1,198 @@
+/*
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of the authors
+ * not be used in advertising or publicity pertaining to distribution of the
+ * software without specific, written prior permission.  The authors make no
+ * representations about the suitability of this software for any
+ * purpose.  It is provided "as is" without express or implied
+ * warranty.
+ *
+ * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "evdev.h"
+
+#include <X11/Xatom.h>
+#include <xf86.h>
+#include <xf86Xinput.h>
+#include <exevents.h>
+
+#include <evdev-properties.h>
+
+/* how many milliseconds to wait for buttons to settle */
+static Atom prop_dbdelay;
+
+struct ButtonTime {
+    unsigned int button;
+    Time time;
+};
+
+static int
+EvdevDBCompareButtonTimes(const void *bt1, const void *bt2)
+{
+    return ((const struct ButtonTime *) bt1)->time -
+            ((const struct ButtonTime *) bt2)->time;
+}
+
+/**
+ * Timer callback for debouncing buttons.
+ */
+static CARD32
+EvdevDBTimer(OsTimerPtr timer, CARD32 time, pointer arg)
+{
+    InputInfoPtr pInfo = arg;
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+    struct ButtonTime release[EVDEV_MAXBUTTONS];
+    size_t nRelease = 0;
+    int sigstate = xf86BlockSIGIO();
+
+    if (db->bouncing) {
+        BOOL bouncing = FALSE;
+        Time next_expiry = ~0;
+        for (size_t button = 0; button < EVDEV_MAXBUTTONS; ++button) {
+            if (db->state[button].bouncing) {
+                Time expiry = db->state[button].expiry;
+                if (expiry <= time) {
+                    db->state[button].pressed = FALSE;
+                    db->state[button].bouncing = FALSE;
+                    release[nRelease].button = button;
+                    release[nRelease].time = expiry;
+                    ++nRelease;
+                }
+                else if (expiry < next_expiry) {
+                    bouncing = TRUE;
+                    next_expiry = expiry;
+                }
+            }
+        }
+        if (nRelease > 0) {
+            if (nRelease > 1) {
+                qsort(release, nRelease, sizeof *release,
+                      EvdevDBCompareButtonTimes);
+            }
+            for (size_t i = 0; i < nRelease; ++i) {
+                EvdevPostButtonEvent(pInfo, release[i].button,
BUTTON_RELEASE);
+            }
+        }
+        if (bouncing) {
+            db->timer = TimerSet(db->timer, 0, next_expiry -
GetTimeInMillis(),
+                                 EvdevDBTimer, pInfo);
+        }
+        else {
+            db->bouncing = FALSE;
+        }
+    }
+
+    xf86UnblockSIGIO(sigstate);
+    return 0;
+}
+
+/**
+ * Debounce button states.
+ *
+ * @return TRUE iff event was swallowed by debouncing.
+ */
+BOOL
+EvdevDBFilterEvent(InputInfoPtr pInfo, unsigned int button, BOOL pressed)
+{
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+
+    if (db->delay == 0) {
+        return FALSE;
+    }
+
+    if (pressed) {
+        if (db->state[button].pressed) {
+            db->state[button].bouncing = FALSE;
+            return TRUE;
+        }
+        db->state[button].pressed = TRUE;
+        return FALSE;
+    }
+
+    if (db->state[button].pressed) {
+        db->state[button].bouncing = TRUE;
+        db->state[button].expiry = GetTimeInMillis() + db->delay;
+        if (!db->bouncing) {
+            db->bouncing = TRUE;
+            db->timer = TimerSet(db->timer, 0, db->delay, EvdevDBTimer,
pInfo);
+        }
+    }
+
+    return TRUE;
+}
+
+void
+EvdevDBPreInit(InputInfoPtr pInfo)
+{
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+
+    db->delay = xf86SetIntOption(pInfo->options, "DebounceDelay", 0);
+    db->timer = TimerSet(NULL, 0, 0, NULL, NULL);
+}
+
+void
+EvdevDBFinalize(InputInfoPtr pInfo)
+{
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+
+    TimerFree(db->timer), db->timer = NULL;
+}
+
+static int
+EvdevDBSetProperty(DeviceIntPtr dev, Atom atom, XIPropertyValuePtr val,
+                   BOOL checkonly)
+{
+    InputInfoPtr pInfo  = dev->public.devicePrivate;
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+
+    if (atom == prop_dbdelay) {
+        if (val->format != 32 || val->size != 1 || val->type != XA_INTEGER) {
+            return BadMatch;
+        }
+        if (!checkonly) {
+            db->delay = *((CARD32 *) val->data);
+        }
+    }
+
+    return Success;
+}
+
+void
+EvdevDBInitProperty(DeviceIntPtr dev)
+{
+    InputInfoPtr pInfo = dev->public.devicePrivate;
+    EvdevPtr pEvdev = pInfo->private;
+    struct debounce *db = &pEvdev->debounce;
+
+    if (dev->button) {
+        prop_dbdelay = MakeAtom(EVDEV_PROP_DEBOUNCE_DELAY,
+                                strlen(EVDEV_PROP_DEBOUNCE_DELAY), TRUE);
+        if (XIChangeDeviceProperty(dev, prop_dbdelay, XA_INTEGER, 32,
+                                   PropModeReplace, 1, &db->delay, FALSE)
+                != Success) {
+            return;
+        }
+        XISetDevicePropertyDeletable(dev, prop_dbdelay, FALSE);
+        XIRegisterPropertyHandler(dev, EvdevDBSetProperty, NULL, NULL);
+    }
+}
diff --git a/src/evdev.c b/src/evdev.c
index 2aab97f..cd0eb11 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -667,6 +667,9 @@ EvdevProcessButtonEvent(InputInfoPtr pInfo, struct
input_event *ev)
     if (EvdevMBEmuFilterEvent(pInfo, button, value))
         return;

+    if (EvdevDBFilterEvent(pInfo, button, value))
+        return;
+
     if (button)
         EvdevQueueButtonEvent(pInfo, button, value);
     else
@@ -1807,6 +1810,7 @@ EvdevInit(DeviceIntPtr device)
     Evdev3BEmuInitProperty(device);
     EvdevWheelEmuInitProperty(device);
     EvdevDragLockInitProperty(device);
+    EvdevDBInitProperty(device);
     EvdevAppleInitProperty(device);

     return Success;
@@ -1864,6 +1868,7 @@ EvdevProc(DeviceIntPtr device, int what)
         {
             EvdevMBEmuFinalize(pInfo);
             Evdev3BEmuFinalize(pInfo);
+            EvdevDBFinalize(pInfo);
         }
         if (pInfo->fd != -1)
         {
@@ -2530,6 +2535,7 @@ EvdevPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int
flags)
         Evdev3BEmuPreInit(pInfo);
         EvdevWheelEmuPreInit(pInfo);
         EvdevDragLockPreInit(pInfo);
+        EvdevDBPreInit(pInfo);
     }

     return Success;
diff --git a/src/evdev.h b/src/evdev.h
index 2901886..8243806 100644
--- a/src/evdev.h
+++ b/src/evdev.h
@@ -221,6 +221,17 @@ typedef struct {
         Time                expires;     /* time of expiry */
         Time                timeout;
     } emulateWheel;
+    /* Button debouncing */
+    struct debounce {
+        Time                delay;
+        OsTimerPtr          timer;
+        BOOL                bouncing;
+        struct {
+            BOOL            pressed;
+            BOOL            bouncing;
+            Time            expiry;
+        } state[EVDEV_MAXBUTTONS];
+    } debounce;
     struct {
         int                 vert_delta;
         int                 horiz_delta;
@@ -298,6 +309,12 @@ BOOL EvdevWheelEmuFilterMotion(InputInfoPtr pInfo, struct
input_event *pEv);
 void EvdevDragLockPreInit(InputInfoPtr pInfo);
 BOOL EvdevDragLockFilterEvent(InputInfoPtr pInfo, unsigned int button, int
value);

+/* Button debouncing */
+BOOL EvdevDBFilterEvent(InputInfoPtr pInfo, unsigned int button, BOOL
pressed);
+void EvdevDBPreInit(InputInfoPtr pInfo);
+void EvdevDBFinalize(InputInfoPtr pInfo);
+void EvdevDBInitProperty(DeviceIntPtr dev);
+
 void EvdevMBEmuInitProperty(DeviceIntPtr);
 void Evdev3BEmuInitProperty(DeviceIntPtr);
 void EvdevWheelEmuInitProperty(DeviceIntPtr);



-- Package-specific info:
X server symlink status:
------------------------
lrwxrwxrwx 1 root root 13 Feb 23  2014 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 2401376 Feb 10 19:35 /usr/bin/Xorg

Diversions concerning libGL are in place
----------------------------------------
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1.2.0 to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/libGL.so.1 to /usr/lib/mesa-diverted/libGL.so.1 by glx-
diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.0.0 to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/libGLESv2.so.2 to /usr/lib/mesa-diverted/libGLESv2.so.2
by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so to /usr/lib/mesa-diverted
/arm-linux-gnueabihf/libGL.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so.2 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so.2 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1.2 to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-
diverted/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so.1 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so.1.1.0 to /usr/lib
/mesa-diverted/arm-linux-gnueabihf/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/libGL.so.1.2.0 to /usr/lib/mesa-diverted/libGL.so.1.2.0
by glx-diversions
diversion of /usr/lib/libGLESv2.so to /usr/lib/mesa-diverted/libGLESv2.so by
glx-diversions
diversion of /usr/lib/libGL.so.1.2 to /usr/lib/mesa-diverted/libGL.so.1.2 by
glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGLESv2.so by glx-diversions
diversion of /usr/lib/libGL.so to /usr/lib/mesa-diverted/libGL.so by glx-
diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1.2 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv2.so by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so to /usr/lib/mesa-diverted/libGLESv1_CM.so
by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1.2.0 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so to /usr/lib/mesa-diverted/i386
-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGL.so.1 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1 to /usr/lib/mesa-diverted
/arm-linux-gnueabihf/libGL.so.1 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so.2.0.0 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so.1 to /usr/lib/mesa-
diverted/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so.2.0.0 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so to /usr/lib/mesa-
diverted/i386-linux-gnu/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so.1 to /usr/lib/mesa-
diverted/arm-linux-gnueabihf/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so.1 to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/libGLESv2.so.2.0.0 to /usr/lib/mesa-
diverted/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so to /usr/lib/mesa-
diverted/x86_64-linux-gnu/libGLESv2.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1.2 to /usr/lib/mesa-
diverted/i386-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1 to /usr/lib/mesa-diverted/i386
-linux-gnu/libGL.so.1 by glx-diversions

VGA-compatible devices on PCI bus:
----------------------------------
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108M [NVS 5400M]
[10de:0def] (rev a1)

/etc/X11/xorg.conf does not exist.

Contents of /etc/X11/xorg.conf.d:
---------------------------------
total 4
-rw-r--r-- 1 root root 111 Aug  9  2014 20-nvidia.conf

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
-------------------------------
Linux version 3.16.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version
4.8.4 (Debian 4.8.4-1) ) #1 SMP Debian 3.16.7-ckt11-1 (2015-05-24)

Xorg X server log files on system:
----------------------------------
-rw-r--r-- 1 root root  5112 Dec 30  2014 /var/log/Xorg.2.log
-rw-r--r-- 1 root root  5112 Dec 30  2014 /var/log/Xorg.3.log
-rw-r--r-- 1 root root  5112 Dec 30  2014 /var/log/Xorg.4.log
-rw-r--r-- 1 root root  5112 Dec 30  2014 /var/log/Xorg.5.log
-rw-r--r-- 1 root root 23202 Jun 20 12:48 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 42672 Aug  4 07:33 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
---------------------------------------------------------------------
[    93.037]
X.Org X Server 1.16.4
Release Date: 2014-12-20
[    93.037] X Protocol Version 11, Revision 0
[    93.037] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian
[    93.037] Current Operating System: Linux ikus060-t530 3.16.0-4-amd64 #1 SMP
Debian 3.16.7-ckt11-1 (2015-05-24) x86_64
[    93.037] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64
root=UUID=6e6491ed-6fd8-4793-926f-8267e032d071 ro quiet noapic
[    93.037] Build Date: 11 February 2015  12:32:02AM
[    93.037] xorg-server 2:1.16.4-1 (http://www.debian.org/support)
[    93.037] Current version of pixman: 0.32.6
[    93.037]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    93.037] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    93.037] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Aug  2 11:12:50
2015
[    93.047] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    93.047] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    93.054] (==) No Layout section.  Using the first Screen section.
[    93.054] (==) No screen section available. Using defaults.
[    93.054] (**) |-->Screen "Default Screen Section" (0)
[    93.054] (**) |   |-->Monitor "<default monitor>"
[    93.054] (==) No device specified for screen "Default Screen Section".
        Using the first device section listed.
[    93.054] (**) |   |-->Device "My GPU"
[    93.054] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[    93.054] (==) Automatically adding devices
[    93.054] (==) Automatically enabling devices
[    93.054] (==) Automatically adding GPU devices
[    93.064] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    93.064]    Entry deleted from font path.
[    93.087] (==) FontPath set to:
        /usr/share/fonts/X11/misc,
        /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
[    93.087] (==) ModulePath set to "/usr/lib/xorg/modules"
[    93.087] (II) The server relies on udev to provide the list of input
devices.
        If no devices become available, reconfigure udev or disable
AutoAddDevices.
[    93.087] (II) Loader magic: 0x7fd235997d80
[    93.087] (II) Module ABI versions:
[    93.087]    X.Org ANSI C Emulation: 0.4
[    93.087]    X.Org Video Driver: 18.0
[    93.087]    X.Org XInput driver : 21.0
[    93.087]    X.Org Server Extension : 8.0
[    93.088] (II) xfree86: Adding drm device (/dev/dri/card0)
[    93.785] (--) PCI:*(0:1:0:0) 10de:0def:17aa:21f6 rev 161, Mem @
0xf2000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @
0x00005000/128, BIOS @ 0x????????/524288
[    93.785] (II) LoadModule: "glx"
[    93.792] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[    93.892] (II) Module glx: vendor="NVIDIA Corporation"
[    93.892]    compiled for 4.0.2, module version = 1.0.0
[    93.892]    Module class: X.Org Server Extension
[    93.892] (II) NVIDIA GLX Module  340.65  Tue Dec  2 09:10:06 PST 2014
[    93.896] (II) LoadModule: "nvidia"
[    93.903] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    93.922] (II) Module nvidia: vendor="NVIDIA Corporation"
[    93.922]    compiled for 4.0.2, module version = 1.0.0
[    93.922]    Module class: X.Org Video Driver
[    93.922] (II) NVIDIA dlloader X Driver  340.65  Tue Dec  2 08:47:36 PST
2014
[    93.922] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    93.922] (++) using VT number 7

[    93.928] (II) Loading sub module "fb"
[    93.928] (II) LoadModule: "fb"
[    93.933] (II) Loading /usr/lib/xorg/modules/libfb.so
[    93.935] (II) Module fb: vendor="X.Org Foundation"
[    93.935]    compiled for 1.16.4, module version = 1.0.0
[    93.935]    ABI class: X.Org ANSI C Emulation, version 0.4
[    93.936] (WW) Unresolved symbol: fbGetGCPrivateKey
[    93.936] (II) Loading sub module "wfb"
[    93.936] (II) LoadModule: "wfb"
[    93.936] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    93.939] (II) Module wfb: vendor="X.Org Foundation"
[    93.939]    compiled for 1.16.4, module version = 1.0.0
[    93.939]    ABI class: X.Org ANSI C Emulation, version 0.4
[    93.939] (II) Loading sub module "ramdac"
[    93.939] (II) LoadModule: "ramdac"
[    93.939] (II) Module "ramdac" already built-in
[    93.940] (II) NVIDIA(0): Creating default Display subsection in Screen
section
        "Default Screen Section" for depth/fbbpp 24/32
[    93.941] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    93.941] (==) NVIDIA(0): RGB weight 888
[    93.941] (==) NVIDIA(0): Default visual is TrueColor
[    93.941] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    93.941] (**) NVIDIA(0): Option "NoLogo" "true"
[    93.941] (**) NVIDIA(0): Enabling 2D acceleration
[    94.641] (II) NVIDIA(0): Display (AU Optronics Corporation (DFP-0)) does
not support
[    94.641] (II) NVIDIA(0):     NVIDIA 3D Vision stereo.
[    94.641] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
[    94.642] (II) NVIDIA(0): NVIDIA GPU NVS 5400M (GF108) at PCI:1:0:0 (GPU-0)
[    94.643] (--) NVIDIA(0): Memory: 1048576 kBytes
[    94.643] (--) NVIDIA(0): VideoBIOS: 70.08.a8.03.02
[    94.643] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    94.648] (--) NVIDIA(0): Valid display device(s) on NVS 5400M at PCI:1:0:0
[    94.648] (--) NVIDIA(0):     CRT-0
[    94.648] (--) NVIDIA(0):     AU Optronics Corporation (DFP-0) (boot,
connected)
[    94.648] (--) NVIDIA(0):     DFP-1
[    94.648] (--) NVIDIA(0):     DFP-2
[    94.648] (--) NVIDIA(0):     DFP-3
[    94.648] (--) NVIDIA(0):     DFP-4
[    94.648] (--) NVIDIA(0):     DFP-5
[    94.648] (--) NVIDIA(0):     DFP-6
[    94.648] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): AU Optronics Corporation (DFP-0): Internal LVDS
[    94.648] (--) NVIDIA(GPU-0): AU Optronics Corporation (DFP-0): 330.0 MHz
maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-1: Internal TMDS
[    94.648] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-2: Internal TMDS
[    94.648] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-3: Internal TMDS
[    94.648] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-4: Internal DisplayPort
[    94.648] (--) NVIDIA(GPU-0): DFP-4: 480.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-5: Internal DisplayPort
[    94.648] (--) NVIDIA(GPU-0): DFP-5: 480.0 MHz maximum pixel clock
[    94.648] (--) NVIDIA(0): DFP-6: Internal DisplayPort
[    94.648] (--) NVIDIA(GPU-0): DFP-6: 480.0 MHz maximum pixel clock
[    94.648] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID
for display
[    94.648] (**) NVIDIA(0):     device AU Optronics Corporation (DFP-0) (Using
EDID
[    94.648] (**) NVIDIA(0):     frequencies has been enabled on all display
devices.)
[    94.649] (==) NVIDIA(0):
[    94.649] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-
auto-select"
[    94.649] (==) NVIDIA(0):     will be used as the requested mode.
[    94.649] (==) NVIDIA(0):
[    94.649] (II) NVIDIA(0): Validated MetaModes:
[    94.649] (II) NVIDIA(0):     "DFP-0:nvidia-auto-select"
[    94.649] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[    95.184] (--) NVIDIA(0): DPI set to (143, 144); computed from "UseEdidDpi"
X config
[    95.184] (--) NVIDIA(0):     option
[    95.184] (--) Depth 24 pixmap format is 32 bpp
[    95.184] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect
memory
[    95.184] (II) NVIDIA:     access.
[    95.196] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[    95.539] (==) NVIDIA(0): Disabling shared memory pixmaps
[    95.539] (==) NVIDIA(0): Backing store enabled
[    95.539] (==) NVIDIA(0): Silken mouse enabled
[    95.539] (==) NVIDIA(0): DPMS enabled
[    95.539] (II) Loading sub module "dri2"
[    95.539] (II) LoadModule: "dri2"
[    95.539] (II) Module "dri2" already built-in
[    95.540] (II) NVIDIA(0): [DRI2] Setup complete
[    95.540] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    95.540] (--) RandR disabled
[    95.548] (II) SELinux: Disabled on system
[    95.549] (II) Initializing extension GLX
[    95.549] (II) Indirect GLX disabled.(II) config/udev: Adding input device
Power Button (/dev/input/event5)
[    95.690] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    95.690] (II) LoadModule: "evdev"
[    95.690] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    95.699] (II) Module evdev: vendor="X.Org Foundation"
[    95.699]    compiled for 1.16.4, module version = 2.9.0
[    95.699]    Module class: X.Org XInput Driver
[    95.699]    ABI class: X.Org XInput driver, version 21.0
[    95.699] (II) Using input driver 'evdev' for 'Power Button'
[    95.699] (**) Power Button: always reports core events
[    95.699] (**) evdev: Power Button: Device: "/dev/input/event5"
[    95.699] (--) evdev: Power Button: Vendor 0 Product 0x1
[    95.699] (--) evdev: Power Button: Found keys
[    95.699] (II) evdev: Power Button: Configuring as keyboard
[    95.699] (**) Option "config_info"
"udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event5"
[    95.699] (II) XINPUT: Adding extended input device "Power Button" (type:
KEYBOARD, id 6)
[    95.699] (**) Option "xkb_rules" "evdev"
[    95.699] (**) Option "xkb_model" "pc105"
[    95.700] (**) Option "xkb_layout" "ca"
[    95.728] (II) config/udev: Adding input device Video Bus
(/dev/input/event6)
[    95.728] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    95.728] (II) Using input driver 'evdev' for 'Video Bus'
[    95.728] (**) Video Bus: always reports core events
[    95.728] (**) evdev: Video Bus: Device: "/dev/input/event6"
[    95.728] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    95.728] (--) evdev: Video Bus: Found keys
[    95.728] (II) evdev: Video Bus: Configuring as keyboard
[    95.728] (**) Option "config_info"
"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7/event6"
[    95.728] (II) XINPUT: Adding extended input device "Video Bus" (type:
KEYBOARD, id 7)
[    95.728] (**) Option "xkb_rules" "evdev"
[    95.728] (**) Option "xkb_model" "pc105"
[    95.728] (**) Option "xkb_layout" "ca"
[    95.729] (II) config/udev: Adding input device Lid Switch
(/dev/input/event3)
[    95.729] (II) No input driver specified, ignoring this device.
[    95.729] (II) This device may have been added with another device file.
[    95.729] (II) config/udev: Adding input device Sleep Button
(/dev/input/event4)
[    95.729] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    95.729] (II) Using input driver 'evdev' for 'Sleep Button'
[    95.729] (**) Sleep Button: always reports core events
[    95.729] (**) evdev: Sleep Button: Device: "/dev/input/event4"
[    95.729] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    95.729] (--) evdev: Sleep Button: Found keys
[    95.729] (II) evdev: Sleep Button: Configuring as keyboard
[    95.729] (**) Option "config_info"
"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5/event4"
[    95.729] (II) XINPUT: Adding extended input device "Sleep Button" (type:
KEYBOARD, id 8)
[    95.729] (**) Option "xkb_rules" "evdev"
[    95.729] (**) Option "xkb_model" "pc105"
[    95.729] (**) Option "xkb_layout" "ca"
[    95.730] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3
(/dev/input/event15)
[    95.730] (II) No input driver specified, ignoring this device.
[    95.730] (II) This device may have been added with another device file.
[    95.730] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7
(/dev/input/event16)
[    95.730] (II) No input driver specified, ignoring this device.
[    95.730] (II) This device may have been added with another device file.
[    95.731] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8
(/dev/input/event17)
[    95.731] (II) No input driver specified, ignoring this device.
[    95.731] (II) This device may have been added with another device file.
[    95.731] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9
(/dev/input/event18)
[    95.731] (II) No input driver specified, ignoring this device.
[    95.731] (II) This device may have been added with another device file.
[    95.731] (II) config/udev: Adding input device Logitech Unifying Device.
Wireless PID:1017 (/dev/input/event1)
[    95.731] (**) Logitech Unifying Device. Wireless PID:1017: Applying
InputClass "evdev pointer catchall"
[    95.732] (II) Using input driver 'evdev' for 'Logitech Unifying Device.
Wireless PID:1017'
[    95.732] (**) Logitech Unifying Device. Wireless PID:1017: always reports
core events
[    95.732] (**) evdev: Logitech Unifying Device. Wireless PID:1017: Device:
"/dev/input/event1"
[    95.732] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Vendor
0x46d Product 0xc52b
[    95.732] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found 20
mouse buttons
[    95.732] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found
scroll wheel(s)
[    95.732] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found
relative axes
[    95.732] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found x
and y relative axes
[    95.732] (II) evdev: Logitech Unifying Device. Wireless PID:1017:
Configuring as mouse
[    95.732] (II) evdev: Logitech Unifying Device. Wireless PID:1017: Adding
scrollwheel support
[    95.732] (**) evdev: Logitech Unifying Device. Wireless PID:1017:
YAxisMapping: buttons 4 and 5
[    95.732] (**) evdev: Logitech Unifying Device. Wireless PID:1017:
EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    95.732] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2/event1"
[    95.732] (II) XINPUT: Adding extended input device "Logitech Unifying
Device. Wireless PID:1017" (type: MOUSE, id 9)
[    95.732] (II) evdev: Logitech Unifying Device. Wireless PID:1017:
initialized for relative axes.
[    95.732] (**) Logitech Unifying Device. Wireless PID:1017: (accel) keeping
acceleration scheme 1
[    95.732] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration profile 0
[    95.732] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration factor: 2.000
[    95.732] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration threshold: 4
[    95.733] (II) config/udev: Adding input device Logitech Unifying Device.
Wireless PID:1017 (/dev/input/mouse0)
[    95.733] (II) No input driver specified, ignoring this device.
[    95.733] (II) This device may have been added with another device file.
[    95.733] (II) config/udev: Adding input device Logitech Unifying Device.
Wireless PID:1017 (/dev/input/event2)
[    95.733] (**) Logitech Unifying Device. Wireless PID:1017: Applying
InputClass "evdev pointer catchall"
[    95.733] (II) Using input driver 'evdev' for 'Logitech Unifying Device.
Wireless PID:1017'
[    95.733] (**) Logitech Unifying Device. Wireless PID:1017: always reports
core events
[    95.733] (**) evdev: Logitech Unifying Device. Wireless PID:1017: Device:
"/dev/input/event2"
[    95.733] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Vendor
0x46d Product 0xc52b
[    95.733] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found 20
mouse buttons
[    95.733] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found
scroll wheel(s)
[    95.733] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found
relative axes
[    95.733] (--) evdev: Logitech Unifying Device. Wireless PID:1017: Found x
and y relative axes
[    95.733] (II) evdev: Logitech Unifying Device. Wireless PID:1017:
Configuring as mouse
[    95.733] (II) evdev: Logitech Unifying Device. Wireless PID:1017: Adding
scrollwheel support
[    95.733] (**) evdev: Logitech Unifying Device. Wireless PID:1017:
YAxisMapping: buttons 4 and 5
[    95.733] (**) evdev: Logitech Unifying Device. Wireless PID:1017:
EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    95.733] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3/event2"
[    95.733] (II) XINPUT: Adding extended input device "Logitech Unifying
Device. Wireless PID:1017" (type: MOUSE, id 10)
[    95.733] (II) evdev: Logitech Unifying Device. Wireless PID:1017:
initialized for relative axes.
[    95.733] (**) Logitech Unifying Device. Wireless PID:1017: (accel) keeping
acceleration scheme 1
[    95.734] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration profile 0
[    95.734] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration factor: 2.000
[    95.734] (**) Logitech Unifying Device. Wireless PID:1017: (accel)
acceleration threshold: 4
[    95.734] (II) config/udev: Adding input device Logitech Unifying Device.
Wireless PID:1017 (/dev/input/mouse1)
[    95.734] (II) No input driver specified, ignoring this device.
[    95.734] (II) This device may have been added with another device file.
[    95.734] (II) config/udev: Adding input device Integrated Camera
(/dev/input/event14)
[    95.734] (**) Integrated Camera: Applying InputClass "evdev keyboard
catchall"
[    95.734] (II) Using input driver 'evdev' for 'Integrated Camera'
[    95.734] (**) Integrated Camera: always reports core events
[    95.734] (**) evdev: Integrated Camera: Device: "/dev/input/event14"
[    95.734] (--) evdev: Integrated Camera: Vendor 0x5986 Product 0x2d2
[    95.734] (--) evdev: Integrated Camera: Found keys
[    95.734] (II) evdev: Integrated Camera: Configuring as keyboard
[    95.735] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input16/event14"
[    95.735] (II) XINPUT: Adding extended input device "Integrated Camera"
(type: KEYBOARD, id 11)
[    95.735] (**) Option "xkb_rules" "evdev"
[    95.735] (**) Option "xkb_model" "pc105"
[    95.735] (**) Option "xkb_layout" "ca"
[    95.735] (II) config/udev: Adding input device HDA Digital PCBeep
(/dev/input/event9)
[    95.735] (II) No input driver specified, ignoring this device.
[    95.735] (II) This device may have been added with another device file.
[    95.736] (II) config/udev: Adding input device HDA Intel PCH Mic
(/dev/input/event10)
[    95.736] (II) No input driver specified, ignoring this device.
[    95.736] (II) This device may have been added with another device file.
[    95.736] (II) config/udev: Adding input device HDA Intel PCH Dock Mic
(/dev/input/event11)
[    95.736] (II) No input driver specified, ignoring this device.
[    95.736] (II) This device may have been added with another device file.
[    95.736] (II) config/udev: Adding input device HDA Intel PCH Headphone
(/dev/input/event12)
[    95.736] (II) No input driver specified, ignoring this device.
[    95.736] (II) This device may have been added with another device file.
[    95.736] (II) config/udev: Adding input device HDA Intel PCH Dock Headphone
(/dev/input/event13)
[    95.736] (II) No input driver specified, ignoring this device.
[    95.736] (II) This device may have been added with another device file.
[    95.737] (II) config/udev: Adding input device AT Translated Set 2 keyboard
(/dev/input/event0)
[    95.737] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev
keyboard catchall"
[    95.737] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    95.737] (**) AT Translated Set 2 keyboard: always reports core events
[    95.737] (**) evdev: AT Translated Set 2 keyboard: Device:
"/dev/input/event0"
[    95.737] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    95.737] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    95.737] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    95.737] (**) Option "config_info"
"udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    95.737] (II) XINPUT: Adding extended input device "AT Translated Set 2
keyboard" (type: KEYBOARD, id 12)
[    95.737] (**) Option "xkb_rules" "evdev"
[    95.737] (**) Option "xkb_model" "pc105"
[    95.737] (**) Option "xkb_layout" "ca"
[    95.738] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad
(/dev/input/event19)
[    95.738] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev
touchpad catchall"
[    95.738] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad
catchall"
[    95.738] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default
clickpad buttons"
[    95.738] (II) LoadModule: "synaptics"
[    95.738] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    95.740] (II) Module synaptics: vendor="X.Org Foundation"
[    95.741]    compiled for 1.16.0.901, module version = 1.8.99
[    95.741]    Module class: X.Org XInput Driver
[    95.741]    ABI class: X.Org XInput driver, version 21.0
[    95.741] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics
TouchPad'
[    95.741] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    95.741] (**) Option "Device" "/dev/input/event19"
[    95.804] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events
for semi-multitouch device
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 -
5470 (res 60)
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 -
4498 (res 85)
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 -
15
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right
double triple
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    95.804] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    95.804] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    95.856] (**) Option "config_info"
"udev:/sys/devices/platform/i8042/serio1/input/input15/event19"
[    95.856] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics
TouchPad" (type: TOUCHPAD, id 13)
[    95.856] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is
now constant deceleration 2.5
[    95.856] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is
now 1.75
[    95.856] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is
now 0.040
[    95.857] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration
scheme 1
[    95.857] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    95.857] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor:
2.000
[    95.857] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    95.857] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    95.858] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad
(/dev/input/mouse2)
[    95.858] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass
"touchpad ignore duplicates"
[    95.858] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint
(/dev/input/event20)
[    95.858] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer
catchall"
[    95.858] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
[    95.859] (**) TPPS/2 IBM TrackPoint: always reports core events
[    95.859] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event20"
[    95.859] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
[    95.859] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
[    95.859] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
[    95.859] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
[    95.859] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
[    95.859] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
[    95.859] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4,
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    95.859] (**) Option "config_info"
"udev:/sys/devices/platform/i8042/serio1/serio2/input/input21/event20"
[    95.859] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint"
(type: MOUSE, id 14)
[    95.859] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
[    95.859] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
[    95.859] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
[    95.859] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    95.859] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    95.860] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint
(/dev/input/mouse3)
[    95.860] (II) No input driver specified, ignoring this device.
[    95.860] (II) This device may have been added with another device file.
[    95.860] (II) config/udev: Adding input device PC Speaker
(/dev/input/event8)
[    95.861] (II) No input driver specified, ignoring this device.
[    95.861] (II) This device may have been added with another device file.
[    95.861] (II) config/udev: Adding input device ThinkPad Extra Buttons
(/dev/input/event7)
[    95.861] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard
catchall"
[    95.861] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
[    95.861] (**) ThinkPad Extra Buttons: always reports core events
[    95.861] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event7"
[    95.862] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
[    95.862] (--) evdev: ThinkPad Extra Buttons: Found keys
[    95.862] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
[    95.862] (**) Option "config_info"
"udev:/sys/devices/platform/thinkpad_acpi/input/input8/event7"
[    95.862] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons"
(type: KEYBOARD, id 15)
[    95.862] (**) Option "xkb_rules" "evdev"
[    95.862] (**) Option "xkb_model" "pc105"
[    95.862] (**) Option "xkb_layout" "ca"
[    97.688] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[    97.688] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   102.416] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   102.416] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   112.778] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   112.778] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   116.116] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   116.116] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   118.536] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   118.536] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   118.538] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   118.538] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   137.392] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   137.392] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   811.161] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[   812.028] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[   812.028] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[   812.047] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1745.601] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  1745.601] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  1779.233] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  1779.233] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  1797.833] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[  1798.709] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  1798.709] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  1798.729] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1899.075] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[  1899.935] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  1899.935] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  1899.952] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  2630.626] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2630.626] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  2630.667] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2630.667] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  2630.692] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2630.692] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  2631.193] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2631.193] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  2631.349] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2631.349] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  2636.233] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  2636.233] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  3380.289] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  3380.289] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  3702.544] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[  3703.418] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  3703.418] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  3703.426] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  3757.289] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  3757.289] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  3958.305] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[  3959.168] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[  3959.168] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[  3959.189] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[ 50694.326] (II) config/udev: Adding input device Apple, Inc Apple Keyboard
(/dev/input/event22)
[ 50694.326] (**) Apple, Inc Apple Keyboard: Applying InputClass "evdev
keyboard catchall"
[ 50694.326] (II) Using input driver 'evdev' for 'Apple, Inc Apple Keyboard'
[ 50694.326] (**) Apple, Inc Apple Keyboard: always reports core events
[ 50694.326] (**) evdev: Apple, Inc Apple Keyboard: Device:
"/dev/input/event22"
[ 50694.326] (--) evdev: Apple, Inc Apple Keyboard: Vendor 0x5ac Product 0x220
[ 50694.326] (--) evdev: Apple, Inc Apple Keyboard: Found keys
[ 50694.327] (II) evdev: Apple, Inc Apple Keyboard: Configuring as keyboard
[ 50694.327] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:05AC:0220.0007/input/input23/event22"
[ 50694.327] (II) XINPUT: Adding extended input device "Apple, Inc Apple
Keyboard" (type: KEYBOARD, id 16)
[ 50694.327] (**) Option "xkb_rules" "evdev"
[ 50694.327] (**) Option "xkb_model" "pc105"
[ 50694.327] (**) Option "xkb_layout" "ca"
[ 50694.328] (II) config/udev: Adding input device Apple, Inc Apple Keyboard
(/dev/input/event21)
[ 50694.328] (**) Apple, Inc Apple Keyboard: Applying InputClass "evdev
keyboard catchall"
[ 50694.328] (II) Using input driver 'evdev' for 'Apple, Inc Apple Keyboard'
[ 50694.328] (**) Apple, Inc Apple Keyboard: always reports core events
[ 50694.328] (**) evdev: Apple, Inc Apple Keyboard: Device:
"/dev/input/event21"
[ 50694.328] (--) evdev: Apple, Inc Apple Keyboard: Vendor 0x5ac Product 0x220
[ 50694.328] (--) evdev: Apple, Inc Apple Keyboard: Found keys
[ 50694.328] (II) evdev: Apple, Inc Apple Keyboard: Configuring as keyboard
[ 50694.328] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:05AC:0220.0006/input/input22/event21"
[ 50694.328] (II) XINPUT: Adding extended input device "Apple, Inc Apple
Keyboard" (type: KEYBOARD, id 17)
[ 50694.328] (**) Option "xkb_rules" "evdev"
[ 50694.328] (**) Option "xkb_model" "pc105"
[ 50694.328] (**) Option "xkb_layout" "ca"
[ 50698.749] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS PB278
(DFP-4)) does not
[ 50698.749] (II) NVIDIA(GPU-0):     support NVIDIA 3D Vision stereo.
[ 50698.749] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID
for display
[ 50698.749] (**) NVIDIA(0):     device Ancor Communications Inc ASUS PB278
(DFP-4) (Using
[ 50698.749] (**) NVIDIA(0):     EDID frequencies has been enabled on all
display
[ 50698.749] (**) NVIDIA(0):     devices.)
[ 50698.761] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50698.761] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50698.765] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50698.765] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50698.912] (II) NVIDIA(0): Setting mode "DP-3: nvidia-auto-select @2560x1440
+0+0 {ViewPortIn=2560x1440, ViewPortOut=2560x1440+0+0}"
[ 50699.027] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select
@1920x1080 +2560+360 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-3:
nvidia-auto-select @2560x1440 +0+0 {ViewPortIn=2560x1440,
ViewPortOut=2560x1440+0+0}"
[ 50699.252] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.252] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.260] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.260] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.263] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.263] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.278] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.278] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.281] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.281] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.283] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.283] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.285] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.285] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.286] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.286] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.289] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.289] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.290] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.290] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.292] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.292] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.294] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.294] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.295] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.295] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.297] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.297] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.299] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.299] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.301] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.301] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 50699.347] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 50699.347] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 56516.778] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 56516.778] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 65468.429] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 65468.429] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 74289.461] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 74289.461] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 74660.074] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[ 74660.074] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[ 96117.581] (II) config/udev: removing device Apple, Inc Apple Keyboard
[ 96117.605] (II) evdev: Apple, Inc Apple Keyboard: Close
[ 96117.605] (II) UnloadModule: "evdev"
[ 96117.606] (II) config/udev: removing device Apple, Inc Apple Keyboard
[ 96117.629] (II) evdev: Apple, Inc Apple Keyboard: Close
[ 96117.629] (II) UnloadModule: "evdev"
[ 96123.314] (II) config/udev: Adding input device Apple, Inc Apple Keyboard
(/dev/input/event22)
[ 96123.315] (**) Apple, Inc Apple Keyboard: Applying InputClass "evdev
keyboard catchall"
[ 96123.315] (II) Using input driver 'evdev' for 'Apple, Inc Apple Keyboard'
[ 96123.315] (**) Apple, Inc Apple Keyboard: always reports core events
[ 96123.315] (**) evdev: Apple, Inc Apple Keyboard: Device:
"/dev/input/event22"
[ 96123.315] (--) evdev: Apple, Inc Apple Keyboard: Vendor 0x5ac Product 0x220
[ 96123.315] (--) evdev: Apple, Inc Apple Keyboard: Found keys
[ 96123.315] (II) evdev: Apple, Inc Apple Keyboard: Configuring as keyboard
[ 96123.315] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:05AC:0220.0009/input/input25/event22"
[ 96123.315] (II) XINPUT: Adding extended input device "Apple, Inc Apple
Keyboard" (type: KEYBOARD, id 16)
[ 96123.315] (**) Option "xkb_rules" "evdev"
[ 96123.315] (**) Option "xkb_model" "pc105"
[ 96123.315] (**) Option "xkb_layout" "ca"
[ 96123.317] (II) config/udev: Adding input device Apple, Inc Apple Keyboard
(/dev/input/event21)
[ 96123.317] (**) Apple, Inc Apple Keyboard: Applying InputClass "evdev
keyboard catchall"
[ 96123.317] (II) Using input driver 'evdev' for 'Apple, Inc Apple Keyboard'
[ 96123.317] (**) Apple, Inc Apple Keyboard: always reports core events
[ 96123.317] (**) evdev: Apple, Inc Apple Keyboard: Device:
"/dev/input/event21"
[ 96123.317] (--) evdev: Apple, Inc Apple Keyboard: Vendor 0x5ac Product 0x220
[ 96123.317] (--) evdev: Apple, Inc Apple Keyboard: Found keys
[ 96123.317] (II) evdev: Apple, Inc Apple Keyboard: Configuring as keyboard
[ 96123.317] (**) Option "config_info"
"udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:05AC:0220.0008/input/input24/event21"
[ 96123.317] (II) XINPUT: Adding extended input device "Apple, Inc Apple
Keyboard" (type: KEYBOARD, id 17)
[ 96123.317] (**) Option "xkb_rules" "evdev"
[ 96123.317] (**) Option "xkb_model" "pc105"
[ 96123.317] (**) Option "xkb_layout" "ca"
[134722.644] (II) config/udev: removing device Apple, Inc Apple Keyboard
[134722.656] (II) evdev: Apple, Inc Apple Keyboard: Close
[134722.656] (II) UnloadModule: "evdev"
[134722.674] (II) config/udev: removing device Apple, Inc Apple Keyboard
[134722.684] (II) evdev: Apple, Inc Apple Keyboard: Close
[134722.684] (II) UnloadModule: "evdev"
[134723.805] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134723.805] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134723.814] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134723.815] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134723.817] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134723.817] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134723.819] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134723.819] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134723.891] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select
@1920x1080 +2560+360 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[134724.796] (II) NVIDIA(0): Setting mode "NULL"
[134725.352] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select
@1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[134725.693] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.693] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.752] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.752] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.754] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.754] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.755] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.755] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.757] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.757] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.759] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.759] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.760] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.760] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.762] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.762] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.763] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.763] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.765] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.765] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134725.807] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134725.807] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134741.006] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select
@1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[134741.848] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0))
does not support
[134741.848] (II) NVIDIA(GPU-0):     NVIDIA 3D Vision stereo.
[134741.853] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found

udev information:
-----------------
P: /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
E: DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
E: EV=3
E: ID_FOR_SEAT=input-acpi-LNXPWRBN_00
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXPWRBN:00
E: ID_PATH_TAG=acpi-LNXPWRBN_00
E: KEY=10000000000000 0
E: MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw
E: NAME="Power Button"
E: PHYS="LNXPWRBN/button/input0"
E: PRODUCT=19/0/1/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=96085

P: /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event5
N: input/event5
E: BACKSPACE=guess
E: DEVNAME=/dev/input/event5
E: DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event5
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXPWRBN:00
E: ID_PATH_TAG=acpi-LNXPWRBN_00
E: MAJOR=13
E: MINOR=69
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=23691
E: XKBLAYOUT=ca
E: XKBMODEL=pc105

P:
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7
E:
DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7
E: EV=3
E: ID_FOR_SEAT=input-acpi-LNXVIDEO_01
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXVIDEO:01
E: ID_PATH_TAG=acpi-LNXVIDEO_01
E: KEY=3e000b00000000 0 0 0
E: MODALIAS=input:b0019v0000p0006e0000-e0,1,kE0,E1,E3,F1,F2,F3,F4,F5,ramlsfw
E: NAME="Video Bus"
E: PHYS="LNXVIDEO/video/input0"
E: PRODUCT=19/0/6/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=97143

P:
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7/event6
N: input/event6
E: BACKSPACE=guess
E: DEVNAME=/dev/input/event6
E:
DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7/event6
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-LNXVIDEO:01
E: ID_PATH_TAG=acpi-LNXVIDEO_01
E: MAJOR=13
E: MINOR=70
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=24383
E: XKBLAYOUT=ca
E: XKBMODEL=pc105

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
E: EV=21
E: ID_FOR_SEAT=input-acpi-PNP0C0D_00
E: ID_INPUT=1
E: ID_PATH=acpi-PNP0C0D:00
E: ID_PATH_TAG=acpi-PNP0C0D_00
E: MODALIAS=input:b0019v0000p0005e0000-e0,5,kramlsfw0,
E: NAME="Lid Switch"
E: PHYS="PNP0C0D/button/input0"
E: PRODUCT=19/0/5/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=1
E: TAGS=:seat:
E: USEC_INITIALIZED=95941

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4/event3
N: input/event3
E: DEVNAME=/dev/input/event3
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4/event3
E: ID_INPUT=1
E: ID_PATH=acpi-PNP0C0D:00
E: ID_PATH_TAG=acpi-PNP0C0D_00
E: MAJOR=13
E: MINOR=67
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=22246

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
E: EV=3
E: ID_FOR_SEAT=input-acpi-PNP0C0E_00
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-PNP0C0E:00
E: ID_PATH_TAG=acpi-PNP0C0E_00
E: KEY=4000 0 0
E: MODALIAS=input:b0019v0000p0003e0000-e0,1,k8E,ramlsfw
E: NAME="Sleep Button"
E: PHYS="PNP0C0E/button/input0"
E: PRODUCT=19/0/3/0
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=96025

P: /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5/event4
N: input/event4
E: BACKSPACE=guess
E: DEVNAME=/dev/input/event4
E: DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5/event4
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=acpi-PNP0C0E:00
E: ID_PATH_TAG=acpi-PNP0C0E_00
E: MAJOR=13
E: MINOR=68
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=23629
E: XKBLAYOUT=ca
E: XKBMODEL=pc105

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
E: DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_01_00_1
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA NVidia HDMI/DP,pcm=3"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=99609

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17/event15
N: input/event15
E: DEVNAME=/dev/input/event15
E:
DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17/event15
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MAJOR=13
E: MINOR=79
E: SUBSYSTEM=input
E: USEC_INITIALIZED=99809

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18
E: DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_01_00_1
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA NVidia HDMI/DP,pcm=7"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=99857

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18/event16
N: input/event16
E: DEVNAME=/dev/input/event16
E:
DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18/event16
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MAJOR=13
E: MINOR=80
E: SUBSYSTEM=input
E: USEC_INITIALIZED=59

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19
E: DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_01_00_1
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA NVidia HDMI/DP,pcm=8"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=107

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19/event17
N: input/event17
E: DEVNAME=/dev/input/event17
E:
DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19/event17
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MAJOR=13
E: MINOR=81
E: SUBSYSTEM=input
E: USEC_INITIALIZED=309

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20
E: DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_01_00_1
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw6,8,
E: NAME="HDA NVidia HDMI/DP,pcm=9"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=140
E: TAGS=:seat:
E: USEC_INITIALIZED=356

P: /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20/event18
N: input/event18
E: DEVNAME=/dev/input/event18
E:
DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20/event18
E: ID_INPUT=1
E: ID_PATH=pci-0000:01:00.1
E: ID_PATH_TAG=pci-0000_01_00_1
E: MAJOR=13
E: MINOR=82
E: SUBSYSTEM=input
E: USEC_INITIALIZED=448

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2
E: EV=17
E: ID_BUS=usb
E: ID_FOR_SEAT=input-pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: KEY=ffff0000 0 0 0 0
E:
MODALIAS=input:b0003v046DpC52Be0111-e0,1,2,4,k110,111,112,113,114,115,116,117,118,119,11A,11B,11C,11D,11E,11F,r0,1,6,8,am4,lsfw
E: MSC=10
E: NAME="Logitech Unifying Device. Wireless PID:1017"
E: PHYS="usb-0000:00:1a.0-1.2:1"
E: PRODUCT=3/46d/c52b/111
E: PROP=0
E: REL=143
E: SUBSYSTEM=input
E: TAGS=:seat:
E: UNIQ=""
E: USEC_INITIALIZED=21861

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2/event1
N: input/event1
S: input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse
S: input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-event-mouse
E: DEVLINKS=/dev/input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse
/dev/input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-event-mouse
E: DEVNAME=/dev/input/event1
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2/event1
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: MAJOR=13
E: MINOR=65
E: SUBSYSTEM=input
E: USEC_INITIALIZED=22212

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2/mouse0
N: input/mouse0
S: input/by-id/usb-Logitech_USB_Receiver-if02-mouse
S: input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-mouse
E: DEVLINKS=/dev/input/by-id/usb-Logitech_USB_Receiver-if02-mouse /dev/input
/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-mouse
E: DEVNAME=/dev/input/mouse0
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2/mouse0
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: MAJOR=13
E: MINOR=32
E: SUBSYSTEM=input
E: USEC_INITIALIZED=22001

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3
E: EV=17
E: ID_BUS=usb
E: ID_FOR_SEAT=input-pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: KEY=ffff0000 0 0 0 0
E:
MODALIAS=input:b0003v046DpC52Be0111-e0,1,2,4,k110,111,112,113,114,115,116,117,118,119,11A,11B,11C,11D,11E,11F,r0,1,6,8,am4,lsfw
E: MSC=10
E: NAME="Logitech Unifying Device. Wireless PID:1017"
E: PHYS="usb-0000:00:1a.0-1.2:2"
E: PRODUCT=3/46d/c52b/111
E: PROP=0
E: REL=143
E: SUBSYSTEM=input
E: TAGS=:seat:
E: UNIQ=""
E: USEC_INITIALIZED=23805

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3/event2
N: input/event2
S: input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse
S: input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-event-mouse
E: DEVLINKS=/dev/input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse
/dev/input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-event-mouse
E: DEVNAME=/dev/input/event2
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3/event2
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: MAJOR=13
E: MINOR=66
E: SUBSYSTEM=input
E: USEC_INITIALIZED=22229

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3/mouse1
N: input/mouse1
S: input/by-id/usb-Logitech_USB_Receiver-if02-mouse
S: input/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-mouse
E: DEVLINKS=/dev/input/by-id/usb-Logitech_USB_Receiver-if02-mouse /dev/input
/by-path/pci-0000:00:1a.0-usb-0:1.2:1.2-mouse
E: DEVNAME=/dev/input/mouse1
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3/mouse1
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=USB_Receiver
E: ID_MODEL_ENC=USB\x20Receiver
E: ID_MODEL_ID=c52b
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.2:1.2
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_2_1_2
E: ID_REVISION=1203
E: ID_SERIAL=Logitech_USB_Receiver
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030101:030102:030000:
E: ID_USB_INTERFACE_NUM=02
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: MAJOR=13
E: MINOR=33
E: SUBSYSTEM=input
E: USEC_INITIALIZED=23876

P: /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input16
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input16
E: EV=3
E: ID_BUS=usb
E: ID_FOR_SEAT=input-pci-0000_00_1a_0-usb-0_1_6_1_0
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_MODEL=Integrated_Camera
E: ID_MODEL_ENC=Integrated\x20Camera
E: ID_MODEL_ID=02d2
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.6:1.0
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_6_1_0
E: ID_REVISION=0011
E: ID_SERIAL=Ricoh_Company_Ltd._Integrated_Camera
E: ID_TYPE=video
E: ID_USB_DRIVER=uvcvideo
E: ID_USB_INTERFACES=:0e0100:0e0200:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=Ricoh_Company_Ltd.
E: ID_VENDOR_ENC=Ricoh\x20Company\x20Ltd.
E: ID_VENDOR_ID=5986
E: KEY=100000 0 0 0
E: MODALIAS=input:b0003v5986p02D2e0011-e0,1,kD4,ramlsfw
E: NAME="Integrated Camera"
E: PHYS="usb-0000:00:1a.0-1.6/button"
E: PRODUCT=3/5986/2d2/11
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=79567

P:
/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input16/event14
N: input/event14
S: input/by-id/usb-Ricoh_Company_Ltd._Integrated_Camera-event-if00
S: input/by-path/pci-0000:00:1a.0-usb-0:1.6:1.0-event
E: BACKSPACE=guess
E: DEVLINKS=/dev/input/by-id/usb-Ricoh_Company_Ltd._Integrated_Camera-event-
if00 /dev/input/by-path/pci-0000:00:1a.0-usb-0:1.6:1.0-event
E: DEVNAME=/dev/input/event14
E:
DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input16/event14
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_MODEL=Integrated_Camera
E: ID_MODEL_ENC=Integrated\x20Camera
E: ID_MODEL_ID=02d2
E: ID_PATH=pci-0000:00:1a.0-usb-0:1.6:1.0
E: ID_PATH_TAG=pci-0000_00_1a_0-usb-0_1_6_1_0
E: ID_REVISION=0011
E: ID_SERIAL=Ricoh_Company_Ltd._Integrated_Camera
E: ID_TYPE=video
E: ID_USB_DRIVER=uvcvideo
E: ID_USB_INTERFACES=:0e0100:0e0200:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=Ricoh_Company_Ltd.
E: ID_VENDOR_ENC=Ricoh\x20Company\x20Ltd.
E: ID_VENDOR_ID=5986
E: MAJOR=13
E: MINOR=78
E: SUBSYSTEM=input
E: USEC_INITIALIZED=79584
E: XKBLAYOUT=ca
E: XKBMODEL=pc105

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
E: EV=40001
E: ID_FOR_SEAT=input-pci-0000_00_1b_0
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MODALIAS=input:b0001v10ECp0269e0001-e0,12,kramls1,2,fw
E: NAME="HDA Digital PCBeep"
E: PHYS="card0/codec#0/beep0"
E: PRODUCT=1/10ec/269/1
E: PROP=0
E: SND=6
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=30310

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10/event9
N: input/event9
E: DEVNAME=/dev/input/event9
E:
DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10/event9
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MAJOR=13
E: MINOR=73
E: SUBSYSTEM=input
E: USEC_INITIALIZED=30340

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input11
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_00_1b_0
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw4,
E: NAME="HDA Intel PCH Mic"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=10
E: TAGS=:seat:
E: USEC_INITIALIZED=30459

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input11/event10
N: input/event10
E: DEVNAME=/dev/input/event10
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input11/event10
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MAJOR=13
E: MINOR=74
E: SUBSYSTEM=input
E: USEC_INITIALIZED=30546

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input12
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_00_1b_0
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw4,
E: NAME="HDA Intel PCH Dock Mic"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=10
E: TAGS=:seat:
E: USEC_INITIALIZED=36263

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input12/event11
N: input/event11
E: DEVNAME=/dev/input/event11
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input12/event11
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MAJOR=13
E: MINOR=75
E: SUBSYSTEM=input
E: USEC_INITIALIZED=37127

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input13
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_00_1b_0
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw2,
E: NAME="HDA Intel PCH Headphone"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=4
E: TAGS=:seat:
E: USEC_INITIALIZED=37202

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input13/event12
N: input/event12
E: DEVNAME=/dev/input/event12
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input13/event12
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MAJOR=13
E: MINOR=76
E: SUBSYSTEM=input
E: USEC_INITIALIZED=37266

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14
E: EV=21
E: ID_FOR_SEAT=input-pci-0000_00_1b_0
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MODALIAS=input:b0000v0000p0000e0000-e0,5,kramlsfw2,
E: NAME="HDA Intel PCH Dock Headphone"
E: PHYS="ALSA"
E: PRODUCT=0/0/0/0
E: PROP=0
E: SUBSYSTEM=input
E: SW=4
E: TAGS=:seat:
E: USEC_INITIALIZED=37292

P: /devices/pci0000:00/0000:00:1b.0/sound/card0/input14/event13
N: input/event13
E: DEVNAME=/dev/input/event13
E: DEVPATH=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14/event13
E: ID_INPUT=1
E: ID_PATH=pci-0000:00:1b.0
E: ID_PATH_TAG=pci-0000_00_1b_0
E: MAJOR=13
E: MINOR=77
E: SUBSYSTEM=input
E: USEC_INITIALIZED=38103

P: /devices/platform/i8042/serio0/input/input0
E: DEVPATH=/devices/platform/i8042/serio0/input/input0
E: EV=120013
E: ID_FOR_SEAT=input-platform-i8042-serio-0
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_PATH=platform-i8042-serio-0
E: ID_PATH_TAG=platform-i8042-serio-0
E: ID_SERIAL=noserial
E: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
E: LED=7
E:
MODALIAS=input:b0011v0001p0001eAB54-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw
E: MSC=10
E: NAME="AT Translated Set 2 keyboard"
E: PHYS="isa0060/serio0/input0"
E: PRODUCT=11/1/1/ab54
E: PROP=0
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=4382

P: /devices/platform/i8042/serio0/input/input0/event0
N: input/event0
S: input/by-path/platform-i8042-serio-0-event-kbd
E: BACKSPACE=guess
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-0-event-kbd
E: DEVNAME=/dev/input/event0
E: DEVPATH=/devices/platform/i8042/serio0/input/input0/event0
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_PATH=platform-i8042-serio-0
E: ID_PATH_TAG=platform-i8042-serio-0
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=64
E: SUBSYSTEM=input
E: USEC_INITIALIZED=22120
E: XKBLAYOUT=ca
E: XKBMODEL=pc105

P: /devices/platform/i8042/serio1/input/input15
E: ABS=260800011000003
E: DEVPATH=/devices/platform/i8042/serio1/input/input15
E: EV=b
E: ID_FOR_SEAT=input-platform-i8042-serio-1
E: ID_INPUT=1
E: ID_INPUT_TOUCHPAD=1
E: ID_PATH=platform-i8042-serio-1
E: ID_PATH_TAG=platform-i8042-serio-1
E: ID_SERIAL=noserial
E: KEY=6420 30000 0 0 0 0
E:
MODALIAS=input:b0011v0002p0007e01B1-e0,1,3,k110,111,145,14A,14D,14E,ra0,1,18,1C,2F,35,36,39,mlsfw
E: NAME="SynPS/2 Synaptics TouchPad"
E: PHYS="isa0060/serio1/input0"
E: PRODUCT=11/2/7/1b1
E: PROP=9
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=57023

P: /devices/platform/i8042/serio1/input/input15/event19
N: input/event19
S: input/by-path/platform-i8042-serio-1-event-mouse
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-1-event-mouse
E: DEVNAME=/dev/input/event19
E: DEVPATH=/devices/platform/i8042/serio1/input/input15/event19
E: ID_INPUT=1
E: ID_INPUT_TOUCHPAD=1
E: ID_PATH=platform-i8042-serio-1
E: ID_PATH_TAG=platform-i8042-serio-1
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=83
E: SUBSYSTEM=input
E: USEC_INITIALIZED=57178

P: /devices/platform/i8042/serio1/input/input15/mouse2
N: input/mouse2
S: input/by-path/platform-i8042-serio-1-mouse
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-1-mouse
E: DEVNAME=/dev/input/mouse2
E: DEVPATH=/devices/platform/i8042/serio1/input/input15/mouse2
E: ID_INPUT=1
E: ID_INPUT_TOUCHPAD=1
E: ID_PATH=platform-i8042-serio-1
E: ID_PATH_TAG=platform-i8042-serio-1
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=34
E: SUBSYSTEM=input
E: USEC_INITIALIZED=57153

P: /devices/platform/i8042/serio1/serio2/input/input21
E: DEVPATH=/devices/platform/i8042/serio1/serio2/input/input21
E: EV=7
E: ID_FOR_SEAT=input-platform-i8042-serio-2
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_PATH=platform-i8042-serio-2
E: ID_PATH_TAG=platform-i8042-serio-2
E: ID_SERIAL=noserial
E: KEY=70000 0 0 0 0
E: MODALIAS=input:b0011v0002p000Ae0000-e0,1,2,k110,111,112,r0,1,amlsfw
E: NAME="TPPS/2 IBM TrackPoint"
E: PHYS="synaptics-pt/serio0/input0"
E: PRODUCT=11/2/a/0
E: PROP=0
E: REL=3
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=67100

P: /devices/platform/i8042/serio1/serio2/input/input21/event20
N: input/event20
S: input/by-path/platform-i8042-serio-2-event-mouse
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-2-event-mouse
E: DEVNAME=/dev/input/event20
E: DEVPATH=/devices/platform/i8042/serio1/serio2/input/input21/event20
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_PATH=platform-i8042-serio-2
E: ID_PATH_TAG=platform-i8042-serio-2
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=84
E: SUBSYSTEM=input
E: USEC_INITIALIZED=67365

P: /devices/platform/i8042/serio1/serio2/input/input21/mouse3
N: input/mouse3
S: input/by-path/platform-i8042-serio-2-mouse
E: DEVLINKS=/dev/input/by-path/platform-i8042-serio-2-mouse
E: DEVNAME=/dev/input/mouse3
E: DEVPATH=/devices/platform/i8042/serio1/serio2/input/input21/mouse3
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_PATH=platform-i8042-serio-2
E: ID_PATH_TAG=platform-i8042-serio-2
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=35
E: SUBSYSTEM=input
E: USEC_INITIALIZED=67325

P: /devices/platform/pcspkr/input/input9
E: DEVPATH=/devices/platform/pcspkr/input/input9
E: EV=40001
E: ID_FOR_SEAT=input-platform-pcspkr
E: ID_INPUT=1
E: ID_PATH=platform-pcspkr
E: ID_PATH_TAG=platform-pcspkr
E: ID_SERIAL=noserial
E: MODALIAS=input:b0010v001Fp0001e0100-e0,12,kramls1,2,fw
E: NAME="PC Speaker"
E: PHYS="isa0061/input0"
E: PRODUCT=10/1f/1/100
E: PROP=0
E: SND=6
E: SUBSYSTEM=input
E: TAGS=:seat:
E: USEC_INITIALIZED=21463

P: /devices/platform/pcspkr/input/input9/event8
N: input/event8
S: input/by-path/platform-pcspkr-event-spkr
E: DEVLINKS=/dev/input/by-path/platform-pcspkr-event-spkr
E: DEVNAME=/dev/input/event8
E: DEVPATH=/devices/platform/pcspkr/input/input9/event8
E: ID_INPUT=1
E: ID_PATH=platform-pcspkr
E: ID_PATH_TAG=platform-pcspkr
E: ID_SERIAL=noserial
E: MAJOR=13
E: MINOR=72
E: SUBSYSTEM=input
E: USEC_INITIALIZED=24980

P: /devices/platform/thinkpad_acpi/input/input8
E: DEVPATH=/devices/platform/thinkpad_acpi/input/input8
E: EV=33
E: ID_FOR_SEAT=input-platform-thinkpad_acpi
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=platform-thinkpad_acpi
E: ID_PATH_TAG=platform-thinkpad_acpi
E: KEY=18040000 0 10000000000000 0 1501b02102004 c000080021104000
10e000000000000 0
E:
MODALIAS=input:b0019v17AAp5054e4101-e0,1,4,5,k71,72,73,78,8E,94,98,9D,AB,BE,BF,C2,CD,D4,D9,E0,E1,E3,E4,EC,EE,F0,174,1D2,1DB,1DC,ram4,lsfw3,
E: MSC=10
E: NAME="ThinkPad Extra Buttons"
E: PHYS="thinkpad_acpi/input0"
E: PRODUCT=19/17aa/5054/4101
E: PROP=0
E: SUBSYSTEM=input
E: SW=8
E: TAGS=:seat:
E: USEC_INITIALIZED=11228

P: /devices/platform/thinkpad_acpi/input/input8/event7
N: input/event7
S: input/by-path/platform-thinkpad_acpi-event
E: BACKSPACE=guess
E: DEVLINKS=/dev/input/by-path/platform-thinkpad_acpi-event
E: DEVNAME=/dev/input/event7
E: DEVPATH=/devices/platform/thinkpad_acpi/input/input8/event7
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_PATH=platform-thinkpad_acpi
E: ID_PATH_TAG=platform-thinkpad_acpi
E: KEYBOARD_KEY_01=screenlock
E: KEYBOARD_KEY_02=battery
E: KEYBOARD_KEY_03=sleep
E: KEYBOARD_KEY_04=wlan
E: KEYBOARD_KEY_06=switchvideomode
E: KEYBOARD_KEY_07=f21
E: KEYBOARD_KEY_08=f24
E: KEYBOARD_KEY_0b=suspend
E: KEYBOARD_KEY_0f=brightnessup
E: KEYBOARD_KEY_10=brightnessdown
E: KEYBOARD_KEY_11=kbdillumtoggle
E: KEYBOARD_KEY_13=zoom
E: KEYBOARD_KEY_14=volumeup
E: KEYBOARD_KEY_15=volumedown
E: KEYBOARD_KEY_16=mute
E: KEYBOARD_KEY_17=prog1
E: KEYBOARD_KEY_1a=f20
E: MAJOR=13
E: MINOR=71
E: SUBSYSTEM=input
E: TAGS=:power-switch:
E: USEC_INITIALIZED=24443
E: XKBLAYOUT=ca
E: XKBMODEL=pc105


DRM Information from dmesg:
---------------------------
[ 1798.056177] ata1.00: supports DRM functions and may not be fully accessible
[ 1798.061770] ata1.00: supports DRM functions and may not be fully accessible
[ 1899.291061] ata1.00: supports DRM functions and may not be fully accessible
[ 1899.296681] ata1.00: supports DRM functions and may not be fully accessible
[ 3703.288799] ata1.00: supports DRM functions and may not be fully accessible
[ 3703.294359] ata1.00: supports DRM functions and may not be fully accessible
[ 3959.088729] ata1.00: supports DRM functions and may not be fully accessible
[ 3959.094147] ata1.00: supports DRM functions and may not be fully accessible
[134776.043671] ata1.00: supports DRM functions and may not be fully accessible
[134776.049418] ata1.00: supports DRM functions and may not be fully accessible



-- System Information:
Debian Release: 8.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages xserver-xorg-input-evdev depends on:
ii  libc6                                  2.19-18
ii  libevdev2                              1.3+dfsg-1
ii  libmtdev1                              1.1.5-1
ii  libudev1                               215-17+deb8u1
ii  xserver-xorg-core [xorg-input-abi-21]  2:1.16.4-1

xserver-xorg-input-evdev recommends no packages.

xserver-xorg-input-evdev suggests no packages.

-- no debconf information


Reply to: