freebsd-ports/x11-drivers/synaptics/pkg-message

89 lines
2.4 KiB
Text
Raw Normal View History

===============================================================================
* SETUP NOTE * SETUP NOTE *
o Please remove ${X11BASE}/lib/modules/input/synaptics_drv.so
manually, If you have installed synaptics-0.14.4_1. I forgot
to chase pkg-plist on 0.14.4_1.
o Add boot time tunable to /boot/loader.conf.
Set hw.psm.synaptics_support=1 and shutdown -r now!
/boot/loader.conf ---------------------------------
hw.psm.synaptics_support=1
---------------------------------------------------
2006-03-19 02:54:37 +01:00
o Don't run moused(8) daemon.
Dont' set moused_enable="YES" in /etc/rc.conf.
/etc/rc.conf --------------------------------------
moused_enable="NO"
---------------------------------------------------
o Set your /etc/xorg.conf (or /etc/XF86Config)
Adopt your environment. This is a sample configration, and
following setting is mine. You may want to change the
values of *Edge and *Delta.
*NOTE*
Please disable your existing "CorePointer" in "ServerLayout"
section, only use "Synaptics_Touchpad" CorePointer.
/etc/xorg.conf (or /etc/XF86Config) ---------------
:
Section "Module"
:
Load "synaptics"
EndSection
Section "ServerLayout"
:
# InputDevice "Standard_PS/2_Mouse" "CorePointer"
InputDevice "Synaptics_Touchpad" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics_Touchpad"
Driver "synaptics"
Option "Device" "/dev/psm0"
Option "Protocol" "psm"
2006-03-19 02:54:37 +01:00
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
2006-03-19 02:54:37 +01:00
Option "FingerLow" "25"
Option "FingerHigh" "30"
2006-03-19 02:54:37 +01:00
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
2006-03-19 02:54:37 +01:00
Option "VertScrollDelta" "100"
2006-03-19 02:54:37 +01:00
Option "HorizScrollDelta" "100"
Option "MinSpeed" "0.06"
Option "MaxSpeed" "0.06"
Option "AccelFactor" "0.0010"
2006-03-19 03:03:24 +01:00
Option "ScrollButtonRepeat" "100"
2006-03-19 02:54:37 +01:00
Option "UpDownScrolling" "on"
Option "UpDownRepeat" "on"
Option "LeftRightScrolling" "on"
Option "LeftRightRepeat" "on"
# "SHMConfig on" seems good works with synclient(1). But this
# options is insecure. I recommended "off" as default.
Option "SHMConfig" "off"
# If you use circular touchpad, uncomment them.
2006-03-19 02:54:37 +01:00
# Option "CircularPad" "on"
# Option "CircularScrolling" "on"
# Option "CircScrollDelta" "0.5"
EndSection
:
/etc/xorg.conf (or /etc/XF86Config) ---------------
===============================================================================