mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
bdd923406f
* Remove SPEC declarations from mk/spec * Remove all board-specific REQUIRE declaratiions left * Replace [have_spec <board>] run-script declarations with have_board where necessary * Remove addition of BOARD variable to SPECS in toplevel Makefile * Move board-specific directories in base-hw out of specs
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
set qemu_spawn_id ""
|
|
set qemu_args [get_cmd_arg --qemu-args ""]
|
|
|
|
|
|
#
|
|
# Enable run scripts to extend 'qemu_arg' via 'append' without bothering
|
|
# about the required whitespace in front of the custom arguments.
|
|
#
|
|
append qemu_args " "
|
|
|
|
|
|
proc qemu_args { } {
|
|
global qemu_args
|
|
return $qemu_args
|
|
}
|
|
|
|
proc qemu_nic_model {} {
|
|
if [have_board pbxa9] { return lan9118 }
|
|
if [have_board zynq_qemu] { return cadence_gem }
|
|
if [have_board pc] { return e1000 }
|
|
return nic_model_missing
|
|
}
|
|
|
|
proc append_qemu_nic_args { { extra_netdev_args "" } } {
|
|
global qemu_args
|
|
append qemu_args " -netdev user,id=net0"
|
|
|
|
if { $extra_netdev_args ne "" } {
|
|
append qemu_args ",$extra_netdev_args"
|
|
}
|
|
|
|
if {[have_board virt_qemu]} {
|
|
append qemu_args " -global virtio-mmio.force-legacy=false "
|
|
append qemu_args " -device virtio-net-device,bus=virtio-mmio-bus.0,netdev=net0 "
|
|
} else {
|
|
append qemu_args " -net nic,model=[qemu_nic_model],netdev=net0 "
|
|
}
|
|
}
|
|
|
|
|
|
##
|
|
# Check whether Qemu support is available
|
|
#
|
|
# XXX should by removed in favor of [have_include "exec/qemu"]
|
|
#
|
|
proc is_qemu_available { } {
|
|
if {[have_board rpi] || [have_board linux]} {
|
|
puts stderr "skipping execution because platform is not supported by qemu"
|
|
return false
|
|
}
|
|
return true
|
|
}
|