A akm91 Mar 16, 2025 #1 Mouse doesn't work because there is no kernel module "ums" , uhid and usbhid. How can I add these modules? FreeBSD 14.2.
Mouse doesn't work because there is no kernel module "ums" , uhid and usbhid. How can I add these modules? FreeBSD 14.2.
USerID Mar 16, 2025 #2 There is some useful information on the forum. You can read a little here. https://forums.freebsd.org/threads/...-gamepads-joysticks-for-desktop-usbhid.84464/ https://forums.freebsd.org/threads/mouse-in-console-with-usbhid-active.91411/
There is some useful information on the forum. You can read a little here. https://forums.freebsd.org/threads/...-gamepads-joysticks-for-desktop-usbhid.84464/ https://forums.freebsd.org/threads/mouse-in-console-with-usbhid-active.91411/
USerID Mar 16, 2025 #4 I don't have usbhid only. Wireless "A4Teсh FG-12" mouse works. # kldstat | grep ums Bash: 28 1 0xffffffff834aa000 4364 ums.ko # kldstat | grep uhid Bash: 27 1 0xffffffff834a6000 3360 uhid.ko
I don't have usbhid only. Wireless "A4Teсh FG-12" mouse works. # kldstat | grep ums Bash: 28 1 0xffffffff834aa000 4364 ums.ko # kldstat | grep uhid Bash: 27 1 0xffffffff834a6000 3360 uhid.ko
USerID Mar 16, 2025 #5 Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): Bash: usbhid_load="YES" Bash: uhid_load="YES" device ums Add the ums driver to the kernel. moused -p /dev/ums0 -t auto Use the first USB mouse on the system as your console mouse.
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): Bash: usbhid_load="YES" Bash: uhid_load="YES" device ums Add the ums driver to the kernel. moused -p /dev/ums0 -t auto Use the first USB mouse on the system as your console mouse.
OP A akm91 Mar 17, 2025 Thread Starter #6 Code: hw.usb.usbhid.enable="1" and Code: kld_list="usbhid" from your first link helped me (only for X)
Code: hw.usb.usbhid.enable="1" and Code: kld_list="usbhid" from your first link helped me (only for X)