2024-01-17 13:14:03 +00:00
|
|
|
build { core init timer lib/ld lib/libc lib/libm lib/vfs lib/posix test/libc }
|
2019-04-26 10:47:33 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<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>
|
|
|
|
<default caps="200"/>
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="test-libc">
|
|
|
|
<resource name="RAM" quantum="400M"/>
|
|
|
|
<config>
|
2019-08-12 16:10:38 +00:00
|
|
|
<vfs> <dir name="dev"> <log/> <inline name="rtc">2019-08-20 15:01</inline> </dir> </vfs>
|
|
|
|
<libc stdout="/dev/log" stderr="/dev/log" rtc="/dev/rtc"/>
|
2019-04-26 10:47:33 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
2023-09-12 14:21:03 +00:00
|
|
|
build_boot_image [build_artifacts]
|
2019-04-26 10:47:33 +00:00
|
|
|
|
|
|
|
append qemu_args " -nographic "
|
|
|
|
|
2019-05-28 09:54:12 +00:00
|
|
|
run_genode_until "child .* exited with exit value 0.*\n" 30
|