I have a problem with my xorg configuration. If i put the appletouch configurations in my xorg.conf file, my X wont start anymore. I get something like input Device "Mouse" (wich seems to be the Touchpad) not found.
I noticed, that my extern mouse uses /dev/input/mice , too. Is this the problem?
My machine is a 12" G4 Powerbook. The used appletouch module ist 0.07!
Here my xorg.conf:
Code: Select all
Section "Module"
Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "type1"
Load "freetype"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/75dpi/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/local/"
EndSection
Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
Option "AutoRepeat" "500 30"
Option "XkbOptions" "lv3:lwin_switch"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "LeftEdge" "60"
Option "RightEdge" "900"
Option "TopEdge" "60"
Option "BottomEdge" "511"
Option "MinSpeed" "0.2"
Option "MaxSpeed" "0.9"
Option "AccelFactor" "0.07"
Option "SHMConfig" "on"
Option "RTCornerButton" "3"
Option "LTCornerButton" "2"
EndSection
Section "Monitor"
Identifier "APPLE_PB_12_TFT"
HorizSync 31.5 - 48.5
VertRefresh 40-150
EndSection
Section "Device"
Identifier "Standard VGA"
VendorName "Unknown"
BoardName "Unknown"
Driver "vga"
EndSection
Section "Device"
Identifier "NV_GF_FX_Go5200"
Driver "nv"
EndSection
Section "Screen"
Identifier "Screen 1"
Device "NV_GF_FX_Go5200"
Monitor "APPLE_PB_12_TFT"
DefaultDepth 24
Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse"
InputDevice "Synaptics Touchpad"
EndSection

