mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
ee352abc56
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
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
build "core init test/log"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="PD"/>
|
|
<service name="CPU"/>
|
|
<service name="ROM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="50"/>
|
|
<start name="test-log">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-log"
|
|
|
|
append qemu_args "-nographic "
|
|
append xen_args { sdl="0" }
|
|
|
|
run_genode_until "Test done.*\n" 20
|
|
|
|
grep_output {\[init -\> test-log\]}
|
|
|
|
compare_output_to {
|
|
[init -> test-log] hex range: [0e00,1680)
|
|
[init -> test-log] empty hex range: [0abc0000,0abc0000) (empty!)
|
|
[init -> test-log] hex range to limit: [f8,ff]
|
|
[init -> test-log] invalid hex range: [f8,08) (overflow!)
|
|
[init -> test-log] negative hex char: 0xfe
|
|
[init -> test-log] positive hex char: 0x02
|
|
[init -> test-log] multiarg string: "parent -> child.7"
|
|
[init -> test-log] String(Hex(3)): 0x3
|
|
[init -> test-log] Test done.
|
|
}
|