mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
051e84c4b4
This commit introduces the new `Component` interface in the form of the headers base/component.h and base/entrypoint.h. The os/server.h API has become merely a compatibilty wrapper and will eventually be removed. The same holds true for os/signal_rpc_dispatcher.h. The mechanism has moved to base/signal.h and is now called 'Signal_handler'. Since the patch shuffles headers around, please do a 'make clean' in the build directory. Issue #1832
42 lines
826 B
Plaintext
42 lines
826 B
Plaintext
build "core init test/libc"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="test-libc">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config>
|
|
<libc stdout="/dev/log">
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
</libc>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image {
|
|
core init test-libc
|
|
ld.lib.so libc.lib.so libm.lib.so
|
|
}
|
|
|
|
append qemu_args " -nographic -m 64 "
|
|
|
|
run_genode_until "child .* exited with exit value 0.*\n" 10
|
|
|