Simple enough, current FreeBSD 12.0
From rc.conf:
Nothing significant in /boot/loader.conf
/etc/devd.conf:
For what its worth the computer is an old Latitude E6220.
I've got a logitech nano receiver for my mouse (Logitech trackman, old discontinued model)
It shows up like:
The keyboard is a KeyboardIO Model 01 ( or is it 101?), it presents as a mouse, serial port, hid device and keyboard,
but keystrokes don't ever show up under the console or under X.
So Given that the default /etc/devd.conf doesn't seem to activate a second usb keyboard, (I've tried adding /dev/ukbd1 just like /dev/ukbd0, no luck). This keyboard runs a modify ardunio (ATMega32U) firmware, so it could be something. Keyboard works under windows. I tried enabling HIDD (devd or devfs seems to autostart it), nothing better.
Suggestions? I can post the usbconfig dump of the keyboard in a few hours when I get home. Lovely $300 keyboard, but doesn't like FreeBSD.
From rc.conf:
Code:
# a mouse
moused_enable="YES"
devfs_system_ruleset="localrules"
# devd
devd_enable="YES" # Run devd, to trigger programs on device tree changes.
#devd_flags="-d" # Additional flags for devd(8).
# hid support does what?
uhidd_enable="no"
#uhidd_flags="-kmohs"
kld_list="cuse nmdm vmm iicbus iic iicbb smbus coretemp aesni tpm pmc fuse"
/etc/devd.conf:
Code:
# When a USB keyboard arrives, attach it as the console keyboard.
attach 100 {
device-name "ukbd0";
action "service syscons setkeyboard /dev/ukbd0";
};
detach 100 {
device-name "ukbd0";
action "service syscons setkeyboard /dev/kbd0";
};
I've got a logitech nano receiver for my mouse (Logitech trackman, old discontinued model)
It shows up like:
Code:
[jessica@amadala ~]$ usbconfig -d 2.3 show_ifdrv
ugen2.3: <Logitech USB Receiver> at usbus2, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (98mA)
ugen2.3.0: ukbd0: <Logitech USB Receiver, class 0/0, rev 2.00/12.01, addr 3>
ugen2.3.1: ums0: <Logitech USB Receiver, class 0/0, rev 2.00/12.01, addr 3>
ugen2.3.2: uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/12.01, addr 3>
but keystrokes don't ever show up under the console or under X.
So Given that the default /etc/devd.conf doesn't seem to activate a second usb keyboard, (I've tried adding /dev/ukbd1 just like /dev/ukbd0, no luck). This keyboard runs a modify ardunio (ATMega32U) firmware, so it could be something. Keyboard works under windows. I tried enabling HIDD (devd or devfs seems to autostart it), nothing better.
Suggestions? I can post the usbconfig dump of the keyboard in a few hours when I get home. Lovely $300 keyboard, but doesn't like FreeBSD.