mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
f119d9ee8b
The patch also removes a few legacies along the way, unifies the coding style, and cuts back superfluous comments. Issue #4860
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
build { core init lib/ld test/sub_rm }
|
|
|
|
create_boot_directory
|
|
|
|
proc local_attach_addr {} { return "0x70000000" }
|
|
proc attach_twice_forbidden {} { if { [have_spec linux] } { return true } else { return false } }
|
|
proc support_attach_sub_any {} { if { [have_spec linux] } { return false } else { return true } }
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="CPU"/>
|
|
<service name="RM"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-sub_rm">
|
|
<resource name="RAM" quantum="10M"/>
|
|
<config local_attach_addr="} [local_attach_addr] {"
|
|
attach_twice_forbidden="} [attach_twice_forbidden] {"
|
|
support_attach_sub_any="} [support_attach_sub_any] {"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
build_boot_image [build_artifacts]
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
run_genode_until {.*--- end of sub-rm test ---.*} 20
|