Explicitly use qemu-system-i386 rather than qemu

This commit is contained in:
Christian Prochaska 2012-04-23 12:45:03 +02:00 committed by Norman Feske
parent 93faa9a36f
commit 2f2fd33d96
2 changed files with 2 additions and 3 deletions

View File

@ -106,7 +106,7 @@ proc spawn_qemu { wait_for_re timeout_value } {
global qemu_args
global qemu
global spawn_id
set qemu "qemu"
set qemu "qemu-system-i386"
set timeout $timeout_value
set pid [eval "spawn $qemu $qemu_args"]

View File

@ -414,9 +414,8 @@ proc spawn_qemu { wait_for_re timeout_value } {
global qemu_args
global qemu
global spawn_id
set qemu "qemu"
# use special qemu versions for non x86_32 architectures
if {[have_spec x86_32]} { set qemu "qemu-system-i386" }
if {[have_spec x86_64]} { set qemu "qemu-system-x86_64" }
if {[have_spec arm]} { set qemu "qemu-system-arm" }