Date: Fri, 03 Jul 2020 21:43:08 +0000 From: bugzilla-noreply@freebsd.org To: bugs@FreeBSD.org Subject: [Bug 247417] No way to make touchpad works under freebsd 12.1 Message-ID: <bug-247417-227-ufgAClIl97@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-247417-227@https.bugs.freebsd.org/bugzilla/> References: <bug-247417-227@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247417 --- Comment #19 from Vladimir Kondratyev <wulf@freebsd.org> --- (In reply to Mc James from comment #18) > Options : > DEVD : off > SUID : on > UDEV : on It appears that UDEV auto-configuration backend disables "mouse" driver when "AutoAddDevices" option is enabled so we have to turn it off. Following snippet forces Xorg on my laptop to nearly pre-evdev behavior so you can try it too. It works for me even without keyboard section: Section "ServerFlags" Option "AutoAddDevices" "false" EndSection Section "InputDevice" Identifier "PS/2 mouse" Option "CorePointer" Option "Protocol" "auto" Option "Device" "/dev/psm0" Driver "mouse" EndSection Section "InputDevice" Identifier "System mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Driver "mouse" Option "AutoServerLayout" "true" EndSection P.S. moused should NOT be enabled in /etc/rc.conf. -- You are receiving this mail because: You are the assignee for the bug.help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-247417-227-ufgAClIl97>
