Re: Mouse problem on ThinkPad X61
--As of July 2, 2011 9:56:33 PM -0600, Warren Block is alleged to have said: The T61 has both a touchpad and a trackpoint. Seems like on my T42, only one works. Possibly there are settings for psm(4) or the synaptics touchpad driver is needed. --As for the rest, it is mine. Check your BIOS settings as well: You can turn them off independently there, and the OS would never see it. Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise use the contents for non-commercial purposes. This copyright will expire 5 years after the author's death, or in 30 years, whichever is longer, unless such a period is in excess of local copyright law. --- ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Mouse problem on ThinkPad X61
On Sat, 2 Jul 2011 21:56:33 -0600 (MDT), Warren Block wrote: > The T61 has both a touchpad and a trackpoint. Seems like on my T42, > only one works. Possibly there are settings for psm(4) or the synaptics > touchpad driver is needed. If both pointing decies are handled independently, e. g. psm0 representing the Trackpoint, while the fingerslimepad is accessed per ums0 (not sure, just an assumption!), it would maybe help to explicitely tell this to moused. Something like this could work: moused_enable="YES" moused_port="/dev/psm0" moused_type="auto" If you also want to use the middle mouse button (a standard thing since the 70s, usually not working on "modern" glidepads), you could add (attention, try it, it's from my memory): moused_flags="-z 4" (But I'm not sure if you really need that, as I don't have it in my current config, but see below why.) And then add the following settings to xorg.conf: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device""/dev/sysmouse" Option "Emulate3Buttons" "true" Option "EmulateWheel" "true" Option "EmulateWheelButton""2" Option "ZAxisMapping" "4 5" EndSection This is the configuration I'm using for a standard 3-button mouse (no wheel), a Sun Type 6 USB, but it also works with 3-button mice attached per PS/2 connector. In this setting, clicking the middle mouse button will _be_ the middle mouse button, and holding it down while moving the mouse in Y direction will be the wheel functionality, much smoother and more precise than a regular mouse wheel. And if required, you can press the left _and_ the right button at the same time which also means the middle mouse button. It should work wonders with the superior TrackPoint. > No, please stop recommending this. Here's the whole story: > http://www.wonkity.com/~wblock/docs/html/aei.html Important source of wisdom. > AEI is the wrong option. If you want to stop xorg from using HAL to > detect input devices, there are two good ways: > > 1. Set Option "AutoAddDevices" "Off" > 2. Build xorg-server with the HAL option disabled. I would suggest the last option. Build X without HAL, run -configure, modify xorg.conf as needed, and everything works. Especially if you need a non-US keyboard layout... :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Mouse problem on ThinkPad X61
On Sat, 2 Jul 2011, Matthias Apitz wrote: El día Saturday, July 02, 2011 a las 02:59:44PM +0900, YOSHIDA Shigeru escribió: Hi, I installed FreeBSD 8.2-RELEASE on ThinkPad X61. When I start the X, the TrackPoint is not recognized. The mouse cursor don't move and the button clicks don't act. My settings on xorg.conf is as follows: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection and my setting on rc.conf is as follows: # -- sysinstall generated deltas -- # Mon Jun 13 04:23:12 2011 moused_type="auto" moused_enable="YES" hald_enable="YES" dbus_enable="YES" What did I missing some configuration? The T61 has both a touchpad and a trackpoint. Seems like on my T42, only one works. Possibly there are settings for psm(4) or the synaptics touchpad driver is needed. Try adding: Option "AllowEmptyInput" "false" No, please stop recommending this. Here's the whole story: http://www.wonkity.com/~wblock/docs/html/aei.html to the Section "ServerLayout"; I know that a lot of people will say, DON'T do, but until now nobody could explain to me how this should work without :-) AEI is the wrong option. If you want to stop xorg from using HAL to detect input devices, there are two good ways: 1. Set Option "AutoAddDevices" "Off" 2. Build xorg-server with the HAL option disabled.___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Mouse problem on ThinkPad X61
El día Saturday, July 02, 2011 a las 02:59:44PM +0900, YOSHIDA Shigeru escribió: > Hi, > > I installed FreeBSD 8.2-RELEASE on ThinkPad X61. > > When I start the X, the TrackPoint is not recognized. > The mouse cursor don't move and the button clicks don't act. > > My settings on xorg.conf is as follows: > > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "auto" > Option "Device" "/dev/sysmouse" > Option "ZAxisMapping" "4 5 6 7" > EndSection > > and my setting on rc.conf is as follows: > > # -- sysinstall generated deltas -- # Mon Jun 13 04:23:12 2011 > moused_type="auto" > moused_enable="YES" > hald_enable="YES" > dbus_enable="YES" > > What did I missing some configuration? Try adding: Option "AllowEmptyInput" "false" to the Section "ServerLayout"; I know that a lot of people will say, DON'T do, but until now nobody could explain to me how this should work without :-) HIH matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Mouse problem on ThinkPad X61
Hi, I installed FreeBSD 8.2-RELEASE on ThinkPad X61. When I start the X, the TrackPoint is not recognized. The mouse cursor don't move and the button clicks don't act. My settings on xorg.conf is as follows: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection and my setting on rc.conf is as follows: # -- sysinstall generated deltas -- # Mon Jun 13 04:23:12 2011 moused_type="auto" moused_enable="YES" hald_enable="YES" dbus_enable="YES" What did I missing some configuration? Thanks, shigeru ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"