The following will add the these features to the touchpad
Features
Vertical scrolling (button four and five events) through moving
the finger on the right side of the touchpad.
I used [URL=http://w1.894.telia.com/~u89404340/touchpad/]Synaptics TouchPad driver for XOrg/XFree86[/URL]
cd /usr/src/linux
make menuconfig
Device Drivers --->Input device support ---> <*> Event interfacewget http://web.telia.com/~u89404340/touchpad/files/synaptics-0.14.3.tar.bz2tar xvjf synaptics-0.14.3.tar.bz2
make && make install
Section "Module"
Load "dbe" # Double-Buffering Extension
# Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "synaptics" #THIS LINE FOR THE TOUCHPAD DRIVER
Load "glx" # 3D layer
EndSection
Section "InputDevice"
Identifier "SynapticsMouse1"
Driver "synaptics"
Option "Device" "/dev/input/mouse0"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "120"
Option "RightEdge" "830"
Option "TopEdge" "120"
Option "BottomEdge" "650"
Option "FingerLow" "13"
Option "FingerHigh" "14"
Option "MaxTapTime" "180"
Option "MaxTapMove" "110"
Option "MaxDoubleTapTime" "210"
Option "TapTime" "10"
# Option "FastTaps" "off"
Option "EmulateMidButtonTime" "1"
# Option "VertScrollDelta" "20"
# Option "HorizScrollDelta" "20"
Option "MinSpeed" "0.5"
Option "MaxSpeed" "0.75"
Option "AccelFactor" "0.085"
# Option "EdgeMotionMinSpeed" "200"
# Option "EdgeMotionMaxSpeed" "200"
# Option "UpDownScrolling" "1"
# Option "CircularScrolling" "1"
# Option "CircScrollDelta" "0.1"
# Option "CircScrollTrigger" "2"
# Option "CoastingSpeed" "1"
Option "SHMConfig" "on"
EndSection
Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
InputDevice "SynapticsMouse1" "AlwaysCore"
Screen "screen1"
EndSection
*attached is the complete xorg.conf