I have a PS/2 mouse on my system that works fine when I dual boot to another OS. (ie. "Yes, it is plugged into the correct port and yes it has batteries."). Yesterday I installed FreeBSD for the first time and I found that I could not use the PS/2 mouse there.
I have tried adding the following to /etc/rc.conf to no avail:
]
moused does not start - it complains that it cannot open /dev/psm0 - and indeed that device does not exist on my system. I saw nothing that seemed to be relevant in the output of "dmesg -a". I have read "man psm" - everything in the "examples" section is in place on my system:
I do see /dev/sysmouse - but using that for moused_port in /etc/rc.conf (or in manually running moused) did not work either. It also does not work in /etc/X11/xorg.conf:
I really like my PS/2 mouse and it keeps a USB port free for other things, so I'd really like to get it working. I strongly suspect the missing /dev/psm0, but I do not know how to add it, or why it is not present. Any ideas? Thanks!
I have tried adding the following to /etc/rc.conf to no avail:
Code:
dbus_enable="YES"
hald_enable="YES"
moused_enable="YES"
moused does not start - it complains that it cannot open /dev/psm0 - and indeed that device does not exist on my system. I saw nothing that seemed to be relevant in the output of "dmesg -a". I have read "man psm" - everything in the "examples" section is in place on my system:
Code:
device atkbdc
device psm
hint.atkbdc.0.at="isa"
hint.atkbdc.0.port="0x060"
hint.psm.0.at="atkbdc"
hint.psm.0.irq="12"
Code:
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ps/2"
Option "Device" "/dev/sysmouse" #also does not work if "/dev/psm0"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Last edited by a moderator: