diff options
author | Peter Hutterer <peter.hutterer@redhat.com> | 2008-12-03 21:57:04 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@redhat.com> | 2008-12-04 08:26:17 +1000 |
commit | 8673dc0ad3d0787c18479cbcbd24fd3d1563bba4 (patch) | |
tree | 60b0fb17682900cf19dbc8f778d1d0173ecaa089 | |
parent | 940a7b1f3e6d04c23a1e5a5e0ccd3ae64c9ea542 (diff) |
fdi: only match on input.touchpad, not on various product names.
We can deal with anything that has absolute x/y and pressure or touch. So
don't bother with various product names. If a touchpad doesn't work, fix it
then.
Suggested by Vojtech Pavlik.
Signed-off-by: Peter Hutterer <peter.hutterer@redhat.com>
Signed-off-by: Christoph Brill <egore911@egore911.de>
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
(cherry picked from commit d17231161f9cebc9ba961db0dd948c996e7cc369)
-rw-r--r-- | fdi/11-x11-synaptics.fdi | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/fdi/11-x11-synaptics.fdi b/fdi/11-x11-synaptics.fdi index 5614149..4bf9ea0 100644 --- a/fdi/11-x11-synaptics.fdi +++ b/fdi/11-x11-synaptics.fdi @@ -2,14 +2,12 @@ <deviceinfo version="0.2"> <device> <match key="info.capabilities" contains="input.touchpad"> - <match key="info.product" contains_outof="Synaptics TouchPad;AlpsPS/2 ALPS;appletouch;bcm5974"> <merge key="input.x11_driver" type="string">synaptics</merge> - <!-- Arbitrary options can be passed to the driver using - the input.x11_options property since xorg-server-1.5. --> - <!-- EXAMPLE: - <merge key="input.x11_options.LeftEdge" type="string">120</merge> - --> - </match> + <!-- Arbitrary options can be passed to the driver using + the input.x11_options property since xorg-server-1.5. --> + <!-- EXAMPLE: + <merge key="input.x11_options.LeftEdge" type="string">120</merge> + --> </match> </device> </deviceinfo> |