https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=254974
Jordan Gordeev <jgopensou...@proton.me> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jgopensou...@proton.me --- Comment #37 from Jordan Gordeev <jgopensou...@proton.me> --- (In reply to Loïc Bartoletti from comment #36) For the trackball problem please open a separate PR. For the Corsair keyboard, what Vladimir was referring to is probably this code in sys/dev/usb/input/ukbd.c: if (hid_is_keyboard(d_ptr, d_len)) { if (hid_is_mouse(d_ptr, d_len)) { /* * NOTE: We currently don't support USB mouse * and USB keyboard on the same USB endpoint. * Let "ums" driver win. */ error = ENXIO; This is a limitation of the older ukbd(4) driver. What you can try is adding these to /boot/loader.conf: usbhid_load="YES" hw.usb.usbhid.enable="1" After you reboot, the keyboard should attach as an hkbd(4) device. -- You are receiving this mail because: You are the assignee for the bug.