summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal13
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
361if [ "$MACHINE" = "qemux86" ]; then 361if [ "$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
389if [ "$MACHINE" = "qemux86-64" ]; then 394if [ "$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