mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-29 15:44:02 +00:00
Skip qemu invocation on panda platform
This commit is contained in:
parent
b32a17e961
commit
b3dd9fcb45
7
tool/run
7
tool/run
@ -415,6 +415,13 @@ proc spawn_qemu { wait_for_re timeout_value } {
|
||||
global qemu
|
||||
global spawn_id
|
||||
|
||||
#
|
||||
# Back out on platforms w/o Qemu support
|
||||
#
|
||||
if {[have_spec platform_panda]} {
|
||||
puts stderr "skipping execution because platform is not supported by qemu"
|
||||
return 0 }
|
||||
|
||||
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" }
|
||||
|
Loading…
x
Reference in New Issue
Block a user