* [gentoo-user] disable syanptics pad @ 2009-05-21 18:00 James 2009-05-21 18:39 ` Paul Hartman ` (2 more replies) 0 siblings, 3 replies; 11+ messages in thread From: James @ 2009-05-21 18:00 UTC (permalink / raw To: gentoo-user Hello, One of my gentoo users only uses and external mouse and hates the synaptics pad. I cannot get rid of the input being active from the synaptics pad. make.conf has this entry: INPUT_DEVICES="keyboard mouse evdev" VIDEO_CARDS="fbdev fglrx vesa" In xorg.conf I have it explicitly disabled: # InputDevice "Synaptics" "AlwaysCore" Here is what is installed: ati-drivers 8.32.5 kde-3.5.9 xorg-x11-7.4 It has this video chip: Radeon XPRESS 200M 5955 (PCIE) Any ideas how to disable the synaptics pad? James ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-user] disable syanptics pad 2009-05-21 18:00 [gentoo-user] disable syanptics pad James @ 2009-05-21 18:39 ` Paul Hartman 2009-05-22 14:47 ` [gentoo-user] " james 2009-05-21 19:13 ` [gentoo-user] " Uwe 2009-05-22 4:57 ` [gentoo-user] " Saphirus Sage 2 siblings, 1 reply; 11+ messages in thread From: Paul Hartman @ 2009-05-21 18:39 UTC (permalink / raw To: gentoo-user On Thu, May 21, 2009 at 1:00 PM, James <wireless@tampabay.rr.com> wrote: > > Hello, > > One of my gentoo users only uses and external mouse > and hates the synaptics pad. > > I cannot get rid of the input being active from the > synaptics pad. I think you need to set corepointer=0 in the FDI file or something similar to that. Or if you're using xorg.conf point it to a specific mouse instead of /dev/mice or whatever the catch-all mouse device is. May be able to get rid of it "even more" with udev rules or something to just make it go away. Sorry I don't have specific examples, I'm on a windows machine right now. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-user] Re: disable syanptics pad 2009-05-21 18:39 ` Paul Hartman @ 2009-05-22 14:47 ` james 2009-05-23 8:55 ` Mick 0 siblings, 1 reply; 11+ messages in thread From: james @ 2009-05-22 14:47 UTC (permalink / raw To: gentoo-user Paul Hartman <paul.hartman+gentoo <at> gmail.com> writes: > I think you need to set corepointer=0 in the FDI file or something > similar to that. Or if you're using xorg.conf point it to a specific > mouse instead of /dev/mice or whatever the catch-all mouse device is. > May be able to get rid of it "even more" with udev rules or something > to just make it go away. Sorry I don't have specific examples, I'm on > a windows machine right now. I'm sure your information is good. But, I need specifics.... thx, James ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-user] Re: disable syanptics pad 2009-05-22 14:47 ` [gentoo-user] " james @ 2009-05-23 8:55 ` Mick 2009-06-04 13:33 ` James 0 siblings, 1 reply; 11+ messages in thread From: Mick @ 2009-05-23 8:55 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1837 bytes --] On Friday 22 May 2009, james wrote: > Paul Hartman <paul.hartman+gentoo <at> gmail.com> writes: > > I think you need to set corepointer=0 in the FDI file or something > > similar to that. Or if you're using xorg.conf point it to a specific > > mouse instead of /dev/mice or whatever the catch-all mouse device is. > > May be able to get rid of it "even more" with udev rules or something > > to just make it go away. Sorry I don't have specific examples, I'm on > > a windows machine right now. > > I'm sure your information is good. But, I need specifics.... This is from my /etc/hal/fdi/policy/10-xinput-configuration.fdi: ================================================= <!-- touchpad --> <device> <match key="info.capabilities" contains="input.touchpad"> <match key="info.product" contains="SynPS/2"> <merge key="input.x11_driver" type="string">synaptics</merge> <merge key="input.x11_options.SHMConfig" type="string">true</merge> <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge> <merge key="input.x11_options.HorizEdgeScroll" type="string">true</merge> <merge key="input.x11_options.TapButton1" type="string">1</merge> <merge key="input.x11_options.ClickButton1" type="string">1</merge> </match> </match> </device> ================================================= Try modifying the above with something like: <merge key="input.x11_options.corepointer" type="string">0</merge> You may want to try my fdi as is first. It may just work without problems in your setup and the touchpad will become useful again. Note: This is on a system which does not use xorg.conf anymore. I am not sure how things get parsed by xorg when both an fdi and a xorg.conf are present. HTH. -- Regards, Mick [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-user] Re: disable syanptics pad 2009-05-23 8:55 ` Mick @ 2009-06-04 13:33 ` James 0 siblings, 0 replies; 11+ messages in thread From: James @ 2009-06-04 13:33 UTC (permalink / raw To: gentoo-user Mick <michaelkintzios <at> gmail.com> writes: > This is from my /etc/hal/fdi/policy/10-xinput-configuration.fdi: > ================================================= > <!-- touchpad --> > <device> > <match key="info.capabilities" contains="input.touchpad"> > <match key="info.product" contains="SynPS/2"> > <merge key="input.x11_driver" type="string">synaptics</merge> > <merge key="input.x11_options.SHMConfig" type="string">true</merge> > <merge key="input.x11_options.VertEdgeScroll" > type="string">true</merge> > <merge key="input.x11_options.HorizEdgeScroll" > type="string">true</merge> > <merge key="input.x11_options.TapButton1" type="string">1</merge> > <merge key="input.x11_options.ClickButton1" type="string">1</merge> > </match> > </match> > </device> > ================================================= thanks mick, Sorry for the delayed response. I only get sporadic access to this laptop. I'm going to research how to remove xorg.conf from a system completely. Once I do this, I'll give your suggestion a whirl and post to a new thread. thanks very much, James ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-user] disable syanptics pad 2009-05-21 18:00 [gentoo-user] disable syanptics pad James 2009-05-21 18:39 ` Paul Hartman @ 2009-05-21 19:13 ` Uwe 2009-05-22 14:49 ` [gentoo-user] " James 2009-05-22 4:57 ` [gentoo-user] " Saphirus Sage 2 siblings, 1 reply; 11+ messages in thread From: Uwe @ 2009-05-21 19:13 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 493 bytes --] On Thu, 21 May 2009 18:00:38 +0000 (UTC) James <wireless@tampabay.rr.com> wrote: > > Hello, > > Any ideas how to disable the synaptics pad? Have you looked in the Bios? Somewhere around there should be an option to turn the touchpad completely off -- /"\ ASCII Ribbon Campaign | Uwe \ / against HTML e-mail | keksvernichter@@gmail.com x against MS attachments | Key: 93BF09A2 @ pool.sks-keyservers.net / \ www.asciiribbon.org | Key: 93BF09A2 @ keys.gnupg.net [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-user] Re: disable syanptics pad 2009-05-21 19:13 ` [gentoo-user] " Uwe @ 2009-05-22 14:49 ` James 0 siblings, 0 replies; 11+ messages in thread From: James @ 2009-05-22 14:49 UTC (permalink / raw To: gentoo-user Uwe <keksvernichter <at> googlemail.com> writes: > Have you looked in the Bios? > Somewhere around there should be an option to turn the touchpad > completely off After booting, I'm pretty sure Linux just ignores the bios on most systems.....? James ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-user] disable syanptics pad 2009-05-21 18:00 [gentoo-user] disable syanptics pad James 2009-05-21 18:39 ` Paul Hartman 2009-05-21 19:13 ` [gentoo-user] " Uwe @ 2009-05-22 4:57 ` Saphirus Sage 2009-05-22 15:06 ` [gentoo-user] " James 2 siblings, 1 reply; 11+ messages in thread From: Saphirus Sage @ 2009-05-22 4:57 UTC (permalink / raw To: gentoo-user James wrote: > Hello, > > One of my gentoo users only uses and external mouse > and hates the synaptics pad. > > I cannot get rid of the input being active from the > synaptics pad. > > > make.conf has this entry: > INPUT_DEVICES="keyboard mouse evdev" > VIDEO_CARDS="fbdev fglrx vesa" > > > In xorg.conf I have it explicitly disabled: > > # InputDevice "Synaptics" "AlwaysCore" > > > Here is what is installed: > ati-drivers 8.32.5 > kde-3.5.9 > xorg-x11-7.4 > > > It has this video chip: > Radeon XPRESS 200M 5955 (PCIE) > > > > Any ideas how to disable the synaptics pad? > > James > > > > > I'm not entirely sure that's a proper way to disable the synaptics pad, as you don't seem to have removed xorg's ability to load the driver. I'd suggest just #'ing out the whole InputDevice section relating to the synaptics pad, and running emerge -C synaptics or emerge -C xf86-input-synaptics, depending on which driver you're using. That should completely remove your ability to use the synaptic touch pad. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-user] Re: disable syanptics pad 2009-05-22 4:57 ` [gentoo-user] " Saphirus Sage @ 2009-05-22 15:06 ` James 2009-05-22 18:22 ` James Ausmus 0 siblings, 1 reply; 11+ messages in thread From: James @ 2009-05-22 15:06 UTC (permalink / raw To: gentoo-user Saphirus Sage <saphirus497 <at> gmail.com> writes: > > Any ideas how to disable the synaptics pad? > I'm not entirely sure that's a proper way to disable the synaptics pad, > as you don't seem to have removed xorg's ability to load the driver. I'd > suggest just #'ing out the whole InputDevice section relating to the > synaptics pad, and running emerge -C synaptics or emerge -C > xf86-input-synaptics, depending on which driver you're using. That > should completely remove your ability to use the synaptic touch pad. Hmmmm, Nothing with the word "synaptics" (or either of the packages you mentioned) is installed. I do have a left over, bloated xorg file, so I'll first just delete the line with the (#) symbol, but, I thought that was the way to deactivate entries. Looking in xorg.conf.examples did not reveal any sort of useful infor Maybe somebody could post a minimal xorg.conf, or a url to some examples? One additional bit of information. The synaptics pad, when touched, makes the mouse(cursor) go crazy in a radom-noise-movement sort of pattern. When I stop touching the synaptics pad and use the external usb mouse, cursor movement becomes normal as expected. ideas? James ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [gentoo-user] Re: disable syanptics pad 2009-05-22 15:06 ` [gentoo-user] " James @ 2009-05-22 18:22 ` James Ausmus 2009-06-04 13:29 ` James 0 siblings, 1 reply; 11+ messages in thread From: James Ausmus @ 2009-05-22 18:22 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 2327 bytes --] On Fri, May 22, 2009 at 8:06 AM, James <wireless@tampabay.rr.com> wrote: > Saphirus Sage <saphirus497 <at> gmail.com> writes: > > > > > Any ideas how to disable the synaptics pad? > > > I'm not entirely sure that's a proper way to disable the synaptics pad, > > as you don't seem to have removed xorg's ability to load the driver. I'd > > suggest just #'ing out the whole InputDevice section relating to the > > synaptics pad, and running emerge -C synaptics or emerge -C > > xf86-input-synaptics, depending on which driver you're using. That > > should completely remove your ability to use the synaptic touch pad. > > Hmmmm, > > > Nothing with the word "synaptics" (or either of the packages you > mentioned) > is installed. > > > I do have a left over, bloated xorg file, so I'll first just delete > the line with the (#) symbol, but, I thought that was the way to > deactivate entries. Looking in xorg.conf.examples did not reveal > any sort of useful infor > > > Maybe somebody could post a minimal xorg.conf, or a url to some examples? > > One additional bit of information. The synaptics pad, when touched, makes > the mouse(cursor) go crazy in a radom-noise-movement sort of pattern. > When I stop touching the synaptics pad and use the external usb mouse, > cursor movement becomes normal as expected. > > > ideas? > > Sounds like, since you don't have a synaptics driver installed, the synaptics device is being handled like a regular mouse via the evdev driver, and the evdev driver doesn't properly handle the data coming from the touchpad, hence the erratic pointer movement. For disabling, I'm not sure, as I don't have access to a system w/ synaptics on it (until I get home, but that's about 8 hours away yet...), but, after emerging the xf86-input-synaptics driver, and looking at the man page (man synaptics), I see the Option "TouchpadOff" "integer" option - if you set this to "1", then the touchpad is disabled, so I would add in a section for the device in your xorg.conf file, something like: Section "InputDevice" Identifier "touchpad" Driver "synaptics" Option "Device" "/dev/input/<whatever-it-is - you can find out by doing "cat /proc/bus/input/devices" and looking at the "Handlers" line>" Option "TouchpadOff" "1" EndSection HTH- -James [-- Attachment #2: Type: text/html, Size: 3130 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-user] Re: disable syanptics pad 2009-05-22 18:22 ` James Ausmus @ 2009-06-04 13:29 ` James 0 siblings, 0 replies; 11+ messages in thread From: James @ 2009-06-04 13:29 UTC (permalink / raw To: gentoo-user James Ausmus <james.ausmus <at> gmail.com> writes: > Sounds like, since you don't have a synaptics driver installed, the synaptics device is being handled like a regular mouse via the evdev driver, and the evdev driver doesn't properly handle the data coming from the touchpad, hence the erratic pointer movement.For disabling, I'm not sure, as I don't have access to a system w/ synaptics on it (until I get home, but that's about 8 hours away yet...), but, after emerging the xf86-input-synaptics driver, and looking at the man page (man synaptics), I see theOption "TouchpadOff" "integer"option - if you set this to "1", then the touchpad is disabled, so I would add in a section for the device in your xorg.conf file, something like: Section "InputDevice" Identifier "touchpad" Driver "synaptics" Option "Device" "/dev/input/<whatever-it-is - you can find out by doing "cat /proc/bus/input/devices" and looking at the "Handlers" line>" Option "TouchpadOff" "1" EndSectionHTH--James Sorry for the delay, I only get access to this laptop, on a sporadic basis. This did not work for me. thanks, James ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-06-04 13:35 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-05-21 18:00 [gentoo-user] disable syanptics pad James 2009-05-21 18:39 ` Paul Hartman 2009-05-22 14:47 ` [gentoo-user] " james 2009-05-23 8:55 ` Mick 2009-06-04 13:33 ` James 2009-05-21 19:13 ` [gentoo-user] " Uwe 2009-05-22 14:49 ` [gentoo-user] " James 2009-05-22 4:57 ` [gentoo-user] " Saphirus Sage 2009-05-22 15:06 ` [gentoo-user] " James 2009-05-22 18:22 ` James Ausmus 2009-06-04 13:29 ` James
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox