xserver-xorg-conf: added BUG support
authorMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Mon, 16 Nov 2009 13:51:56 +0000 (14:51 +0100)
committerMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Mon, 16 Nov 2009 13:52:19 +0000 (14:52 +0100)
recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf [new file with mode: 0644]
recipes/xorg-xserver/xserver-xorg-conf_0.1.bb

diff --git a/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/bug/xorg.conf
new file mode 100644 (file)
index 0000000..8b6cd94
--- /dev/null
@@ -0,0 +1,65 @@
+#
+# Initial version of X11 configuration for BugLabs BUG device.
+#
+# Up to 2 LCD modules are supported (as DISPLAY=0.0/0.1).
+# Touchscreen on first screen works properly (req tslib 0.0.6 driver).
+#
+# By default software starts on 0.0 only.
+#
+
+Section "Monitor"
+        Identifier      "Monitor 1"
+EndSection
+
+Section "Monitor"
+        Identifier      "Monitor 2"
+EndSection
+
+Section "Device"
+        Identifier      "fbdev Device 2"
+        Driver  "fbdev"
+       Option "fbdev" "/dev/fb2"
+       Option "shadowfb" "true"
+EndSection
+
+Section "Device"
+        Identifier      "fbdev Device 1"
+        Driver  "fbdev"
+       Option "fbdev" "/dev/fb1"
+       Option "shadowfb" "true"
+EndSection
+
+Section "Screen"
+        Identifier      "fbdev Screen 2"
+        Device  "fbdev Device 2"
+        Monitor "Monitor 2"
+EndSection
+
+Section "Screen"
+        Identifier      "fbdev Screen 1"
+        Device  "fbdev Device 1"
+        Monitor "Monitor 1"
+EndSection
+
+Section "ServerLayout"
+        Identifier      "Layout"
+        Screen  "fbdev Screen 1"
+        Screen  "fbdev Screen 2" Below "fbdev Screen 1"
+       InputDevice "ts4" "CorePointer"
+EndSection
+
+Section "InputDevice"
+    Identifier "ts5"
+    Driver "tslib"
+    Option "Device" "/dev/input/bmi_lcd_ts5"
+EndSection
+
+Section "InputDevice"
+    Identifier "ts4"
+    Driver "tslib"
+    Option "Device" "/dev/input/bmi_lcd_ts4"
+EndSection
+
+Section "ServerFlags"
+       Option "AutoAddDevices" "false"
+EndSection
index 7a8e6e9..8945e1e 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r15"
+PR = "r16"
 
 SRC_URI = "file://xorg.conf"