2018-08-30 12:56:02 +00:00
|
|
|
build { core init drivers/timer noux server/log_terminal
|
2013-11-12 16:52:31 +00:00
|
|
|
lib/libc_noux noux-pkg/coreutils }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config verbose="yes">
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <any-child/> <parent/> </any-service>
|
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<start name="timer">
|
2012-05-08 14:20:35 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
2013-11-12 16:52:31 +00:00
|
|
|
<start name="terminal">
|
|
|
|
<binary name="log_terminal" />
|
2011-12-22 15:19:25 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Terminal"/></provides>
|
|
|
|
</start>
|
2017-05-07 20:36:11 +00:00
|
|
|
<start name="noux" caps="500">
|
2011-12-22 15:19:25 +00:00
|
|
|
<resource name="RAM" quantum="1G"/>
|
2013-08-22 12:36:15 +00:00
|
|
|
<config verbose="yes">
|
2012-04-25 21:52:49 +00:00
|
|
|
<fstab> <tar name="coreutils.tar" /> </fstab>
|
2011-12-22 15:19:25 +00:00
|
|
|
<start name="/bin/ls"> <arg value="-Rla"/> </start>
|
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
build_boot_image {
|
2018-04-23 08:49:21 +00:00
|
|
|
core init timer log_terminal ld.lib.so noux libc.lib.so vfs.lib.so libm.lib.so
|
2017-05-14 19:55:57 +00:00
|
|
|
libc_noux.lib.so coreutils.tar posix.lib.so
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 16:52:31 +00:00
|
|
|
append qemu_args " -nographic -serial mon:stdio "
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-11-12 16:52:31 +00:00
|
|
|
if {[have_spec x86_64]} {
|
|
|
|
# coreutils.tar is really huge when built for x86_64
|
2012-05-08 14:20:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-24 14:36:17 +00:00
|
|
|
run_genode_until {child "noux" exited with exit value 0.*\n} 30
|