Mouse doesn't work

Mouse doesn't work because there is no kernel module "ums" , uhid and usbhid. How can I add these modules? FreeBSD 14.2.
 
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
 
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.
 
Back
Top