]> code.ossystems Code Review - meta-freescale.git/commitdiff
xserver-xf86-config: custom xorg.conf file for iMx targets
authorAdrian Alonso <b38018@freescale.com>
Wed, 24 Aug 2011 22:37:49 +0000 (17:37 -0500)
committerAdrian Alonso <b38018@freescale.com>
Wed, 24 Aug 2011 22:37:49 +0000 (17:37 -0500)
* Custom xorg config file for iMx targets
* Binds eGalaxy touchscreen to use evdev driver
* Sets framebuffet to use imx driver

Signed-off-by: Adrian Alonso <b38018@freescale.com>
meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf [new file with mode: 0644]
meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend [new file with mode: 0644]

diff --git a/meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf b/meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf
new file mode 100644 (file)
index 0000000..bbb1f53
--- /dev/null
@@ -0,0 +1,45 @@
+Section "InputDevice"
+    Identifier  "Generic Keyboard"
+    Driver      "kbd"
+    Option      "XkbRules"  "xorg"
+    Option      "XkbModel"  "pc105"
+    Option      "XkbLayout" "us"
+EndSection
+
+Section "InputDevice"
+    Identifier  "Configured Mouse"
+    Driver      "mouse"
+    Option      "CorePointer"
+EndSection
+
+Section "InputClass"
+    Identifier "eGalax"
+    MatchIsTouchscreen "on"
+    MatchDevicePath "/dev/input/event*"
+    Driver "evdev"
+EndSection
+
+Section "Device"
+    Identifier  "i.MX Accelerated Framebuffer Device"
+    Driver      "imx"
+    Option      "fbdev"     "/dev/fb0"
+    # This option only recognized when "mxc_epdc_fb" frame buffer driver in
+    # use.  Values are "RGB565" (default, 16-bit RGB), "Y8" (8-bit gray),
+    # and "Y8INV" (8-bit gray inverted).
+    Option      "FormatEPDC"    "Y8INV"
+EndSection
+
+Section "Monitor"
+    Identifier  "Configured Monitor"
+EndSection
+
+Section "Screen"
+    Identifier  "Default Screen"
+    Monitor     "Configured Monitor"
+    Device      "i.MX Accelerated Framebuffer Device"
+EndSection
+
+Section "ServerLayout"
+    Identifier  "Default Layout"
+    Screen      "Default Screen"
+EndSection
diff --git a/meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/meta-fsl-arm/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
new file mode 100644 (file)
index 0000000..e6c5a53
--- /dev/null
@@ -0,0 +1,4 @@
+# Append path for freescale layer to include bsp xorg.conf 
+THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
+FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"
+