diff options
author | Graeme Gregory <dp@xora.org.uk> | 2010-01-10 21:07:57 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2010-01-10 21:07:57 +0000 |
commit | 09be6bb208f5ecc2a00274038866f5fb3b25c5fd (patch) | |
tree | 85c28fadcdfd4172a9959486369fdd55a2fef130 /recipes/xorg-xserver/xserver-xorg-conf | |
parent | 8a3b0c0dd65c3c2def554af01446b9ee09725355 (diff) | |
parent | f2934215635d101459eb15b3505843370c20c6ec (diff) |
Merge branch 'org.openembedded.dev' of git+ssh://git.openembedded.org/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/xorg-xserver/xserver-xorg-conf')
-rw-r--r-- | recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf | 49 |
1 files changed, 42 insertions, 7 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf index 7f3eb7797f..bdd6d71404 100644 --- a/recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf +++ b/recipes/xorg-xserver/xserver-xorg-conf/ronetix-pm9263/xorg.conf @@ -1,11 +1,46 @@ -Section "ServerLayout" - Identifier "default" - InputDevice "atmel-ts" "CorePointer" +# +# X11 configuration for Ronetix PM9263 device. +# (C)2009 Koan sas - www.KoanSoftware.com +# + +Section "Monitor" + Identifier "Display" +EndSection + +Section "Device" + Identifier "fbdevice" + Driver "fbdev" + Option "fbdev" "/dev/fb0" + Option "shadowfb" "true" +EndSection + +Section "Screen" + Identifier "fbscreen" + Device "fbdevice" + Monitor "Display" EndSection Section "InputDevice" - Identifier "atmel-ts" - Driver "evdev" - Option "SwapAxes" "1" - Option "Device" "/dev/input/touchscreen0" + Identifier "atmel-ts" + Driver "evdev" + Option "SwapAxes" "1" + Option "Device" "/dev/input/touchscreen0" EndSection + +Section "InputDevice" + Identifier "Generic Mouse" + Driver "mouse" + Option "CorePointer" +EndSection + +Section "ServerLayout" + Identifier "Layout" + Screen "fbscreen" + InputDevice "Generic Mouse" + InputDevice "atmel-ts" "CorePointer" +EndSection + +Section "ServerFlags" + Option "AutoAddDevices" "false" +EndSection + |