genode/tool/run/xen.inc
Christian Prochaska ee352abc56 run: add Xen support
When building Genode on a Linux system running in a Xen Dom0, the 'xen'
run target can run a Genode scenario in a Xen DomU.

Usage: in build/x86_*/etc/build.conf, define:

RUN_OPT = --include boot_dir/$(KERNEL) --include image/iso --include power_on/xen --include log/xen --include power_off/xen

The Xen DomU runs in HVM mode and loads Genode from an ISO image. Serial
log output is printed to the console and graphical output is shown in an
SDL window.

The Xen DomU ist managed using the 'xl' command line tool and it is
possible to add configuration options in the 'xen_args' variable in a run
script. Common options are:

- disabling the graphical output:

  append xen_args { sdl="0" }

- configuring a network device:

  append xen_args { vif=\["model=e1000,mac=02:00:00:00:01:01,bridge=xenbr0"\] }

- configuring USB input devices:

  append xen_args { usbdevice=\["mouse","keyboard"\] }

Note: the 'xl' tool requires super-user permissions and interactive
password input can be troublesome in combination with 'expect' and is not
practical for automatic tests. For this reason, the current implementation
assumes that no password input is needed when running 'sudo xl', which can
be achieved by creating a file '/etc/sudoers.d/xl' with the content
'user ALL=(root) NOPASSWD: /usr/sbin/xl'
(where 'user' is the Linux user name).

Fixes #2504
2017-08-28 16:49:48 +02:00

32 lines
610 B
PHP

set xen_spawn_id ""
set xen_args [get_cmd_arg --xen-args ""]
#
# Enable run scripts to extend 'xen_arg' via 'append' without bothering
# about the required whitespace in front of the custom arguments.
#
append xen_args " "
proc xen_args { } {
global xen_args
return $xen_args
}
##
# Check whether Xen support is available
#
# XXX should by removed in favor of [have_include "exec/xen"]
#
proc is_xen_available { } {
if {[have_spec linux]} { return false }
if {![have_spec x86]} {
puts stderr "skipping execution because platform is not supported by Xen"
return false
}
return true
}