om-gta02: xorg.conf with evdev drivers for input
authorMartin.Jansa <Martin.Jansa@gmail.com>
Fri, 30 Oct 2009 10:33:55 +0000 (11:33 +0100)
committerMartin Jansa <Martin.Jansa@gmail.com>
Tue, 22 Dec 2009 12:42:17 +0000 (13:42 +0100)
recipes/xorg-xserver/xserver-xorg-conf/om-gta02/xorg.conf

index 3fc8d83..7d7589f 100644 (file)
@@ -1,20 +1,52 @@
+Section "Module"
+        Load    "glx"
+        Load   "dri2"
+EndSection
+
+
 Section "Monitor"
-        Identifier      "Builtin Default Monitor"
+        Identifier      "LCD Panel"
 EndSection
 
+
 Section "Device"
-        Identifier      "Builtin Default glamo Device 0"
-        Driver  "glamo"
-EndSection
+        Identifier      "Glamo Graphics Chip"
+        Driver          "glamo"
+EndSection  
+
 
 Section "Screen"
-        Identifier      "Builtin Default glamo Screen 0"
-        Device  "Builtin Default glamo Device 0"
-        Monitor "Builtin Default Monitor"
+        Identifier      "Default Screen"
+        Device          "Glamo Graphics Chip"
+        Monitor         "LCD Panel"
 EndSection
 
-Section "ServerLayout"
-        Identifier      "Builtin Default Layout"
-        Screen  "Builtin Default glamo Screen 0"
+
+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