My mandriva 2008.0 runs fine, and auto-configured itself. Nice. Here's the resulting xorg.conf mouse part:
CODE
# File generated by XFdrake (rev 239302)
[…]
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
EndSection
[…]
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
EndSection
The problem I have is that I want to append these options to this section:
CODE
Option "EmulateWheel" "on"
Option "EmulateWheelButton" "2"
Option "EmulateWheelTimeout" "1000"
Option "YAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
Option "EmulateWheelButton" "2"
Option "EmulateWheelTimeout" "1000"
Option "YAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
If I do so and CtrlAltBackspace, the options are enabled. Good.
Unfortunately, on next reboot (and that's at least twice a day), my added options are gone and I'm back to the original Section…
What is the cure?
Yves.