https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=154955
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from [email protected] --- (In reply to Alexander from comment #0) The same issue on my Lenovo Ideapad S110 with 13.3-RELEASE. My fix (quick one, needs to be integrated somehow into proper place): #include <sys/types.h> #include <sys/cdefs.h> #include <machine/cpufunc.h> #include <fcntl.h> #define I8042_COMMAND_REG 0x64 int main() { open("/dev/io", O_WRONLY); outb(I8042_COMMAND_REG, 0xae); return 0; } Thank you (over years) for the link which has conveyed to the fix. -- You are receiving this mail because: You are the assignee for the bug.
