On Thu, 24 Oct 2002, leegold wrote:

> Date: Thu, 24 Oct 2002 01:07:52 UT
> From: leegold <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: X will not start as root - need help
> 
> Here's my config. files - appreciate the help:
> Refer to my previous posts for the error message.
> 
> THANK YOU in advance.
> 
> 1.
> $ grep mouse /etc/rc.cont
> moused_enable="YES"

I never enable moused as I don't want a mouse pointer in my terminal. It's 
not required for X (as others have said).

>From your dmesg:
> psm0: <PS/2 Mouse> irq 12 on atkbdc0
> psm0: model IntelliMouse, device ID 3
> 

>From your XF86Config:
> Section "InputDevice"
>     Identifier      "Mouse1"
>     Driver  "mouse"
>     Option "Protocol"    "MouseSystems"
>     Option "Device"      "/dev/sysmouse"
>     Option "ClearDTR"
>     Option "ClearRTS"
> EndSection

For the Device section above, try /dev/psm0 - That's how I use it. 
Actually, I have one line each for USB and PS/2. Also, I think the DTR and 
RTS stuff is only for serial mice? Are you *sure* you selected the ps2 
mouse style during xf86config? The protocol should be "PS/2". So re-write 
this with:

 Section "InputDevice"
     Identifier      "Mouse1"
     Driver  "mouse"
     Option "Protocol"    "PS/2"
     Option "Device"      "/dev/psm0"
     Option "ZAxisMapping" "4 5"
 EndSection

The ZAxisMapping is for your mousewheel. You can also add or fake 3-button 
support here. See the comments in your XF86Config file.

HTH - JB


#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to