diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2014-02-13 17:26:51 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-13 17:53:30 +0000 |
commit | a2a20adbfd03ed9f07a3aa38ee2c9a8d962d4bf9 (patch) | |
tree | cfd1efd8619eeb5b56bbbb2fb9d53beee93489a3 /scripts/runqemu-internal | |
parent | 6a6cdadf31ce382a14a8f9cd83dfaa18062447de (diff) | |
download | poky-a2a20adbfd03ed9f07a3aa38ee2c9a8d962d4bf9.tar.gz |
runqemu: enforce right CPU type for qemux86/x86-64
Set in accordance with qemu machines configs.
Fixes [YOCTO #5817].
(From OE-Core rev: 0e5cfef90ff762b33da6dc301dfc9cb3947c8a02)
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-x | scripts/runqemu-internal | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 08931074ec..f9ca380f26 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal | |||
@@ -360,6 +360,11 @@ fi | |||
360 | 360 | ||
361 | if [ "$MACHINE" = "qemux86" ]; then | 361 | if [ "$MACHINE" = "qemux86" ]; then |
362 | QEMU=qemu-system-i386 | 362 | QEMU=qemu-system-i386 |
363 | if [ "$KVM_ACTIVE" = "yes" ]; then | ||
364 | CPU_SUBTYPE=kvm32 | ||
365 | else | ||
366 | CPU_SUBTYPE=qemu32 | ||
367 | fi | ||
363 | if [ ! -z "$vga_option" ]; then | 368 | if [ ! -z "$vga_option" ]; then |
364 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" | 369 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" |
365 | else | 370 | else |
@@ -367,7 +372,7 @@ if [ "$MACHINE" = "qemux86" ]; then | |||
367 | fi | 372 | fi |
368 | if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then | 373 | if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then |
369 | KERNCMDLINE="vga=0 uvesafb.mode_option=640x480-32 root=$DROOT rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD" | 374 | KERNCMDLINE="vga=0 uvesafb.mode_option=640x480-32 root=$DROOT rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD" |
370 | QEMUOPTIONS="$QEMU_NETWORK_CMD $ROOTFS_OPTIONS $QEMU_UI_OPTIONS" | 375 | QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE $ROOTFS_OPTIONS $QEMU_UI_OPTIONS" |
371 | fi | 376 | fi |
372 | if [ "$FSTYPE" = "nfs" ]; then | 377 | if [ "$FSTYPE" = "nfs" ]; then |
373 | if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then | 378 | if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then |
@@ -388,7 +393,11 @@ fi | |||
388 | 393 | ||
389 | if [ "$MACHINE" = "qemux86-64" ]; then | 394 | if [ "$MACHINE" = "qemux86-64" ]; then |
390 | QEMU=qemu-system-x86_64 | 395 | QEMU=qemu-system-x86_64 |
391 | CPU_SUBTYPE=core2duo | 396 | if [ "$KVM_ACTIVE" = "yes" ]; then |
397 | CPU_SUBTYPE=kvm64 | ||
398 | else | ||
399 | CPU_SUBTYPE=core2duo | ||
400 | fi | ||
392 | if [ ! -z "$vga_option" ]; then | 401 | if [ ! -z "$vga_option" ]; then |
393 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" | 402 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" |
394 | else | 403 | else |