xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf : added mouse support
authorMarco Cavallini <m.cavallini@koansoftware.com>
Thu, 7 Jan 2010 10:34:42 +0000 (11:34 +0100)
committerMarco Cavallini <m.cavallini@koansoftware.com>
Thu, 7 Jan 2010 10:36:36 +0000 (11:36 +0100)
recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf

index 7f3eb77..bdd6d71 100644 (file)
@@ -1,11 +1,46 @@
-Section "ServerLayout"
-    Identifier "default"
-    InputDevice "atmel-ts" "CorePointer"
+#
+# X11 configuration for Ronetix PM9263 device.
+# (C)2009 Koan sas - www.KoanSoftware.com
+#
+
+Section "Monitor"
+        Identifier      "Display"
+EndSection
+
+Section "Device"
+        Identifier      "fbdevice"
+        Driver         "fbdev"
+       Option          "fbdev" "/dev/fb0"
+       Option          "shadowfb" "true"
+EndSection
+
+Section "Screen"
+        Identifier      "fbscreen"
+        Device         "fbdevice"
+        Monitor        "Display"
 EndSection
 
 Section "InputDevice"
-    Identifier "atmel-ts"
-    Driver "evdev"
-    Option "SwapAxes" "1"
-    Option "Device" "/dev/input/touchscreen0"
+        Identifier      "atmel-ts"
+        Driver          "evdev"
+        Option          "SwapAxes" "1"
+        Option          "Device" "/dev/input/touchscreen0"
 EndSection
+
+Section "InputDevice"
+        Identifier      "Generic Mouse"
+        Driver          "mouse"   
+        Option          "CorePointer"
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Layout"
+        Screen         "fbscreen"
+        InputDevice     "Generic Mouse"
+        InputDevice    "atmel-ts" "CorePointer"
+EndSection
+
+Section "ServerFlags"
+       Option "AutoAddDevices" "false"
+EndSection
+