I got my Touchpad and usb mouse to work at the same time. Not sure if it will work with two ps/2 port mice. but here is how I did it:
Goto
http://www.tuxmobil....ware/synaptics/ or read and download at
http://www.tuxmobil....pad_driver.html and download the synaptic driver. Copy the "synaptics_drv.o" to your XFree module directory (e.g.: /usr/X11R6/lib/modules/drivers) I did not compile the download I just copied the driver to my directory.
In the XF86Config-4
Section "InputDevice"
Identifier "Mouse2"
Driver "synaptics"
Option "Protocol" "ImPS/2"
Option "Device" "/dev/psaux"
Option "MaxTapTime" "20"
Option "UpDownScrolling" "on"
Option "VertScrollDelta" "100"
Option "Edges" "1900 5400 1800 3900"
Option "ZAxisMapping" "4 5"
Option "MaxSpeed" "0.18"
Option "MinSpeed" "0.02"
Option "SHMConfig" "on"
Option "Finger" "25 30"
Option "MaxTapMove" "220"
Option "CorePointer" ""
Option "AccelFactor" "0.0007"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/usbmouse"
Option "ZAxisMapping" "4 5"
EndSection
and at the bottom:
Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse2" "SendCoreEvents"
Screen "screen1"
EndSection
Works with my Gentoo system with the 2.6.3 kernel also.