https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247417
--- Comment #19 from Vladimir Kondratyev <[email protected]> --- (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. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
