Subject: Re: Wheel mouses and X
To: <>
From: None <mcmahill@mtl.mit.edu>
List: port-i386
Date: 06/25/1999 07:42:52
On 25 Jun 1999, Matthias Scheler wrote:

> 	Hello,
> 
> yesterday I tried to use the wheel of by Logitech Pilot Wheel Mouse USB
> with NetBSD's X11. I worked quite fell except for the mapping of the
> z axis. Linux normaly uses this...
> 
> 	ZAxisMapping 4 5
> 
> ... but I had to use this:
> 
> 	ZAxisMapping 5 4
> 
> Is the in general true for NetBSD or is this a bug in the USB mouse driver?
> What mapping do people with PS/2 wheel mouses use?
> 

For a PS/2 wheel mouse, I have in /etc/XF86Config


Section "Pointer"
   Protocol        "wsmouse"
   Device          "/dev/wsmouse0"
   ZAxisMapping    4 5
EndSection

and in my kernel config file:

pmsi*           at pckbc?       # PS/2 "Intelli"mouse for wsmouse
wsmouse*        at pmsi?


so I suppose for usb mouse, the appropriate thing is:

# USB Mice
ums*    at uhub? port ? configuration ? interface ?
wsmouse*        at ums?

-Dan