]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu script: explicitly set 32 bit depth for x86-64
authorAlexandru DAMIAN <alexandru.damian@intel.com>
Tue, 9 Apr 2013 15:33:05 +0000 (18:33 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 10 Apr 2013 12:00:00 +0000 (13:00 +0100)
This patch is the same as 6c22c591374d258228f74814cded34a24b4bf2d3,
but for x86-64 targets which exhibit the same problem.

Qemu update from 1.2 to 1.4 now allows for 16bit depth in guests,
whereby previously only 32bit depth was supported. However,
the new support is broken, so we force 32bit depth in all cases.

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu-internal

index e8191d13759d2531fa0a4eb4d068d3da14be80a6..c7e4c5c7e2b3093b1fededefc51cf217bbab5244 100755 (executable)
@@ -349,7 +349,7 @@ if [ "$MACHINE" = "qemux86-64" ]; then
     QEMU=qemu-system-x86_64
     QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -vga vmware"
     if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then
-        KERNCMDLINE="vga=0 root=$DROOT rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD"
+        KERNCMDLINE="vga=0 uvesafb.mode_option=640x480-32 root=$DROOT rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD"
         QEMUOPTIONS="$QEMU_NETWORK_CMD $ROOTFS_OPTIONS $QEMU_UI_OPTIONS"
     fi
     if [ "$FSTYPE" = "nfs" ]; then