aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-09-07 01:01:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-10 13:01:31 +0100
commitb1ccf0202ba66f9be76463df177f11719ab589e8 (patch)
treeddc06686a6b129a7c1b967b1b3138afd761f8850 /scripts
parent1b91e597f3550c35605d6b15fd958376e3dde93d (diff)
downloadopenembedded-core-contrib-b1ccf0202ba66f9be76463df177f11719ab589e8.tar.gz
runqemu-internal: New qemu calls it qemu-system-i386 for x86
New qemu calls the x86 system emulator to be qemu-system-i386 which is consistent now so change it in scripts Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-internal2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index e628833cd2..a9b1c44de4 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -318,7 +318,7 @@ if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarm
fi
if [ "$MACHINE" = "qemux86" ]; then
- QEMU=qemu
+ QEMU=qemu-system-i386
QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -vga vmware"
if [ "$FSTYPE" = "ext2" -o "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then
KERNCMDLINE="vga=0 root=/dev/hda rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD"