You will need to create a file:
Code:
/etc/hal/fdi/policy/shmconfig.fdi
Place the following in that file:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="input.x11_driver" string="synaptics">
<merge key="input.x11_options.SHMConfig" type="string">True</merge>
</match>
</device>
</deviceinfo>
I adapted this information from
here and it works on my system but you have to have shared memory enabled in your /etc/fstab by adding the following:
Code:
tmpfs /dev/shm tmpfs defaults 0 0
Also, I'm not noticing the following line in your xorg.conf:
Code:
InputDevice "Synaptics" "SendCoreEvents"
This might be accidental to your shared memory problem but I always needed to add this to my xorg.conf like so:
Code:
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Synaptics" "SendCoreEvents"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection