View Single Post

   
  #4 (permalink)  
Old 04-17-2008, 04:08 PM
AZ Nomad
 
Posts: n/a
Default Re: I don't appear to have a mouse device on my Gentoo based computer

On Wed, 16 Apr 2008 08:31:08 -0500, AZ Nomad <aznomad.3@PremoveOBthisOX.COM> wrote:
>On Wed, 16 Apr 2008 04:08:08 GMT, Mark Hobley <markhobley@hotpop.donottypethisbit.com> wrote:
>>I am running Gentoo using udev to manage devices. My computer is a
>>generic IBM compatible computer using an ATX type motherboard with a
>>PS/2 mouse attached to a port on the motherboard.


>On my system, /etc/X11/xorg.conf's pointer section uses /dev/psaux
>/dev/psaux is a link to /dev/misc/psaux


which isn't on your system..... looking further:
( man -k udev ... play around with udevinfo ... )
$ udevinfo --query=name --name=/dev/misc/psaux --attribute-walk

Udevinfo starts with the device specified by the devpath and then
walks up the chain of parent devices. It prints for every device
found, all possible attributes in the udev rules key format.
A rule to match, can be composed by the attributes of the device
and the attributes from one single parent device.

looking at device '/class/misc/psaux':
KERNEL=="psaux"
SUBSYSTEM=="misc"
DRIVER==""
ATTR{dev}=="10:1"

No driver; looks like it's built into the kernel.

<become root>
# cd /usr/src/linux
# make menuconfig
# /psaux <-- foward slash in menuconfig to search

Symbol: INPUT_MOUSEDEV_PSAUX [=y] ?
? Prompt: Provide legacy /dev/psaux device ?
? Defined at drivers/input/Kconfig:72 ?
? Depends on: !S390 && INPUT && INPUT_MOUSEDEV ?
? Location: ?
? -> Device Drivers ?
? -> Input device support ?
? -> Generic input layer (needed for keyboard, mouse, ...) (INPUT ?
? -> Mouse interface (INPUT_MOUSEDEV [=y]) ?

Yup, it was built into the kernel. (A module would have [=m])
Reply With Quote