summaryrefslogtreecommitdiffstats
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:55 +0100
commit3e1d3d3dcf7c078679a09a95c7932f57ca917938 (patch)
treeb44bd52a6032f56851c9c1105006e042cdf2f1e0 /scripts
parent7c4878ecf40ca6eaf8d64169d788827e92bca0bc (diff)
downloadpoky-3e1d3d3dcf7c078679a09a95c7932f57ca917938.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 (From OE-Core rev: b1ccf0202ba66f9be76463df177f11719ab589e8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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
318fi 318fi
319 319
320if [ "$MACHINE" = "qemux86" ]; then 320if [ "$MACHINE" = "qemux86" ]; then
321 QEMU=qemu 321 QEMU=qemu-system-i386
322 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -vga vmware" 322 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -vga vmware"
323 if [ "$FSTYPE" = "ext2" -o "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then 323 if [ "$FSTYPE" = "ext2" -o "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then
324 KERNCMDLINE="vga=0 root=/dev/hda rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD" 324 KERNCMDLINE="vga=0 root=/dev/hda rw mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD"