Created attachment 853209 [details] xorg log with evdev drivers Hi, I installed the evdev x86 driver again to see if the touchpad will stop working again, it did stop working. I got these files in the folder etc/X11/xorg.conf.d file:///etc/X11/xorg.conf.d/10-evdev.conf # Catch-all evdev loader for udev-based systems # We don't simply match on any device since that also adds accelerometers # and other devices that we don't really want to use. The list below # matches everything but joysticks. Section "InputClass" Identifier "evdev pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection file:///etc/X11/xorg.conf.d/11-evdev.conf Section "InputClass" # Novell Bugs #597214, #780626, #843333, #861813 Identifier "Trackpoint Wheel Emulation" MatchProduct "TPPS/2 IBM TrackPoint|ThinkPad USB Keyboard with TrackPoint" MatchIsPointer "on" Driver "evdev" Option "EmulateWheel" "on" Option "EmulateWheelButton" "2" # Since middle button is in use now these button events need to be emulated (bnc#869097) Option "Emulate3Buttons" "on" EndSection file:///etc/X11/xorg.conf.d/50-elotouch.conf Section "InputClass" MatchProduct "Elo TouchSystems CarrollTouch 4500U|Elo TouchSystems CarrollTouch 4000U" Identifier "Elotouch" Driver "evdev" Option "Mode" "Absolute" EndSection after removing the evdev driver again these files where removed as well thanks