aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xorg-xserver
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2011-06-07 23:16:25 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2011-06-07 23:27:19 +0200
commit7cadae3dfbc591f25dcae046586e5357bc61edfb (patch)
tree7b3304b648fe8e52b7e81058be83cd435e72c13f /recipes/xorg-xserver
parentb86cc02703fe412bc9774ce894629eaa5b423c46 (diff)
downloadopenembedded-7cadae3dfbc591f25dcae046586e5357bc61edfb.tar.gz
xserver-xorg-conf: add nexusone xorg.conf and bump PR
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Diffstat (limited to 'recipes/xorg-xserver')
-rw-r--r--recipes/xorg-xserver/xserver-xorg-conf/nexusone/xorg.conf55
-rw-r--r--recipes/xorg-xserver/xserver-xorg-conf_0.1.bb2
2 files changed, 56 insertions, 1 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/nexusone/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/nexusone/xorg.conf
new file mode 100644
index 0000000000..79d0e364e3
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/nexusone/xorg.conf
@@ -0,0 +1,55 @@
+Section "Module"
+ Load "extmod"
+ Load "dbe"
+ Load "glx"
+ Load "freetype"
+ Load "type1"
+ Load "record"
+ Load "dri"
+EndSection
+
+Section "Monitor"
+ Identifier "Default Monitor"
+EndSection
+
+Section "Device"
+ Identifier "Default fbdev Device"
+ Driver "fbdev"
+# Option "Rotate" "CW" # uncomment that line for enabling rotation
+EndSection
+
+Section "InputDevice"
+ Identifier "Touchscreen"
+ Driver "evdev"
+ Option "Device" "/dev/input/event3"
+# Option "InvertY" "1" # uncomment that line for enabling rotation
+# Option "SwapAxes" "1" # uncomment that line for enabling rotation
+EndSection
+
+Section "InputDevice"
+ Identifier "Keypad"
+ Driver "evdev"
+ Option "Device" "/dev/input/event5"
+EndSection
+
+Section "InputDevice"
+ Identifier "Trackball"
+ Driver "evdev"
+ Option "Device" "/dev/input/event6"
+# Option "InvertY" "1" # uncomment that line for enabling rotation
+# Option "SwapAxes" "1" # uncomment that line for enabling rotation
+
+EndSection
+
+Section "Screen"
+ Identifier "Default Screen"
+ Device "Default fbdev Device"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Default Layout"
+ Screen "Default Screen"
+ InputDevice "Touchscreen"
+ InputDevice "Keypad"
+ InputDevice "Trackball"
+EndSection
diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index 7cc8a5df04..3e1e7b6f8f 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
+++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r47"
+PR = "r48"
SRC_URI = "file://xorg.conf"