diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-06-04 15:23:37 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-07 16:13:00 +0100 |
commit | cab1009b08012cc292d9740cf6e3b0f09a29d74f (patch) | |
tree | be68010bdb2d7ac7bbdd94387ce648b51c16e38d /meta/packages/xorg-xserver/xserver-xf86-config | |
parent | bf59d217a8c6376f90832927ad3254fbbbbf48f3 (diff) | |
download | openembedded-core-cab1009b08012cc292d9740cf6e3b0f09a29d74f.tar.gz openembedded-core-cab1009b08012cc292d9740cf6e3b0f09a29d74f.tar.bz2 openembedded-core-cab1009b08012cc292d9740cf6e3b0f09a29d74f.zip |
Fixes for Qemu to use VGA and Touch Screen
Added usb tablet options to poky-qemu-internal script, and adjusted the
xorg.conf script for x86 to use VGA screen and tablet input device
Signed-off-by: Saul Wold <saul.wold@intel.com>
Diffstat (limited to 'meta/packages/xorg-xserver/xserver-xf86-config')
-rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf index 50fd7b4797..7f5bfa70ea 100644 --- a/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf +++ b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf @@ -21,6 +21,14 @@ Section "InputDevice" Option "Emulate3Buttons" "true" EndSection +Section "InputDevice" + Identifier "Qemu Tablet" + Driver "evdev" + Option "CorePointer" + Option "Device" "/dev/input/touchscreen0" + Option "USB" "on" +EndSection + Section "Device" Identifier "Graphics Controller" Driver "vmware" @@ -31,6 +39,14 @@ Section "Monitor" Option "DPMS" # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync + # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz + ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync + # 640x480 @ 72Hz (VESA) hsync: 37.9kHz + ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync + # 640x480 @ 75Hz (VESA) hsync: 37.5kHz + ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync + # 640x480 @ 85Hz (VESA) hsync: 43.3kHz + ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync EndSection Section "Screen" @@ -39,7 +55,7 @@ Section "Screen" Monitor "Generic Monitor" DefaultDepth 24 SubSection "Display" - Modes "1024x600_60.00" + Modes "640x480" EndSubSection EndSection @@ -47,7 +63,7 @@ Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" - InputDevice "Configured Mouse" + # InputDevice "Configured Mouse" + InputDevice "QEMU Tablet" Option "AllowEmptyInput" "no" EndSection - |