aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xorg-xserver/xserver-xorg-conf
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-01-31 03:02:22 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2010-01-31 03:37:03 +0100
commitb067bfb0eac2ea5720de1754f59ddf69c21ff2cb (patch)
tree3280ccbf228569298f6ee7a539ad64f170df09f3 /recipes/xorg-xserver/xserver-xorg-conf
parent25bc5293e404d2f25e57edf03b931d417618d6fd (diff)
downloadopenembedded-b067bfb0eac2ea5720de1754f59ddf69c21ff2cb.tar.gz
xserver-xorg-conf: add om-gta01 configuration
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/xorg-xserver/xserver-xorg-conf')
-rw-r--r--recipes/xorg-xserver/xserver-xorg-conf/om-gta01/xorg.conf46
1 files changed, 46 insertions, 0 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/om-gta01/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/om-gta01/xorg.conf
new file mode 100644
index 0000000000..b77b5527b5
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/om-gta01/xorg.conf
@@ -0,0 +1,46 @@
+Section "Monitor"
+ Identifier "LCD Panel"
+EndSection
+
+
+Section "Device"
+ Identifier "Fbdev"
+ Driver "fbdev"
+EndSection
+
+
+Section "Screen"
+ Identifier "Default Screen"
+ Device "Fbdev"
+ Monitor "LCD Panel"
+EndSection
+
+
+Section "InputDevice"
+ Identifier "Power Button"
+ Driver "evdev"
+ Option "Device" "/dev/input/event0"
+EndSection
+
+
+Section "InputDevice"
+ Identifier "AUX Button"
+ Driver "evdev"
+ Option "Device" "/dev/input/event4"
+EndSection
+
+
+Section "InputDevice"
+ Identifier "Touchscreen"
+ Driver "evdev"
+ Option "Device" "/dev/input/event1"
+EndSection
+
+
+Section "ServerLayout"
+ Identifier "Default Layout"
+ Screen "Default Screen"
+ InputDevice "Power Button"
+ InputDevice "AUX Button"
+ InputDevice "Touchscreen"
+EndSection