http://www.linuxforum.com/forums/ind...showtopic=1476
possibly related, lol. (I am NOT a linux peep, lol)
Quote from link
"I was having the same problem. I did some research, and it appears that it is being caused by the system thinking you have a USB keyboard. What you should do is go to the rc.sysinit file in /etc/rc.d, and scroll down until you come to lines:
CODE
needusbstorage=
if [ $usb = "1" ]; then
needusbstorage=`LC_ALL=C grep -e "^I.*Cls=08" /proc/bus/usb/devices 2>/dev/null`
LC_ALL=C grep 'hid' /proc/bus/usb/drivers || action $"Initializing USB HID interface: " modprobe hid 2> /dev/null
action $"Initializing USB keyboard: " modprobe keybdev 2> /dev/null
action $"Initializing USB mouse: " modprobe mousedev 2> /dev/null
fi
This is the problematic code (in RedHat 9/Shrike, at least.) Comment out all of it, or if you like to live life dangerously, delete it. This should solve your problem.
Also, make sure the proper keyboard layout is set in the /etc/X11/XF86Config file. For some reason, mine was set to pc105 when it is actually a pc104. Go figure.
Actually.... I have no idea what I'm doing, really. I THINK that this is the problem, commenting it out works for me. It could just be the usb keyboard line that's problematic, or both the keyboard and mouse line, or perhaps the whole entire thing. Dunno. "