Quote:
Originally Posted by JEO
On my F16 I have a PS/2 keyboard. There is a short blurb in the kernel dmesg log about it:
And something near the end of /var/log/Xorg.0.log:
I imagine your PS/2 mouse if detected would appear near those areas.
|
Thanks! Yes here are the results on my FC16 PC:
dmesg gives:
Code:
[ 1.303213] i8042: PNP: PS/2 Controller [PNP0303:KEYB,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 1.305755] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.305767] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.305945] mousedev: PS/2 mouse device common for all mice
so this shows the PS/2 mouse device has been found, using the i8042 device and IRQ 12.
I had a look in /var/log/Xorg.0.log and found the following:
Code:
[ 26.033] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[ 26.033] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
but nothing about a PS/2 mouse.
I came across xinput command, this shows (once I had plugged in a USB mouse as well as the PS/2 mouse):
Code:
#xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Logitech Optical USB Mouse id=8 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=9 [slave keyboard (3)]
For a comparison I looked on another PC (running FC14 rather than FC16) which has a USB mouse and PS/2 connected, this shows dmesg very similar to the above, but on this PC the PS/2 mouse is detected by X and works fine, for example:
Code:
# xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ PS/2 Generic Mouse id=9 [slave pointer (2)]
⎜ ↳ USB Optical Mouse id=10 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=8 [slave keyboard (3)]
I am not sure how the output of dmesg relates to what X detects, there seems to be a difference between these two PCs (nb one with FC16 is having the problem, FC14 one is fine!)
Any further suggestions welcome,
Regards,
John