вот file:///etc/hal/fdi/policy/11-x11-synaptics.fdi:
Код: Выделить всё
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<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. -->
<!-- EXAMPLES:
Switch on shared memory, enables the driver to be configured at runtime
<merge key="input.x11_options.SHMConfig" type="string">true</merge>-->
<!--Maximum movement of the finger for detecting a tap-->
<merge key="input.x11_options.MaxTapMove" type="string">2000</merge>
<!--Enable vertical scrolling when dragging along the right edge-->
<merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>
<!--Enable vertical scrolling when dragging with two fingers anywhere on the touchpad-->
<merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge>
<!--Enable horizontal scrolling when dragging with two fingers anywhere on the touchpad-->
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge>
<!--If on, circular scrolling is used-->
<merge key="input.x11_options.CircularScrolling" type="string">true</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton3" type="string">3</merge>
<!--For other possible options, check CONFIGURATION DETAILS in synaptics man page
-->
</match>
</device>
</deviceinfo>вывод lshal|grep synaptic -A 16:
Код: Выделить всё
input.x11_driver = 'synaptics' (string)
input.x11_options.CircularScrolling = 'true' (string)
input.x11_options.HorizTwoFingerScroll = 'true' (string)
input.x11_options.MaxTapMove = '2000' (string)
input.x11_options.TapButton1 = '1' (string)
input.x11_options.TapButton2 = '2' (string)
input.x11_options.TapButton3 = '3' (string)
input.x11_options.VertEdgeScroll = 'true' (string)
input.x11_options.VertTwoFingerScroll = 'true' (string)
linux.device_file = '/dev/input/event9' (string)
linux.hotplug_type = 2 (0x2) (int)
linux.subsystem = 'input' (string)
linux.sysfs_path = '/sys/devices/platform/i8042/serio2/input/input9/event9' (string)
udi = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX0_port'такое ощущение, что в Debian настройки hal перехали в другое место, т.к. в каталоге /etc/hal/ только каталог fdi/policy заполнен настроечным файлом для тачпада, его прежней копией и файлом preferences.fdi. Остальные каталоги information и preprobe пустые.
Кто-нибудь знает где еще покопать?