2019-04-26 10:47:33 +00:00
|
|
|
build { noux lib/libc_noux }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
2019-04-26 10:47:33 +00:00
|
|
|
import_from_depot [depot_user]/src/[base_src] \
|
|
|
|
[depot_user]/src/init \
|
|
|
|
[depot_user]/src/coreutils \
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
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>
|
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"/>
|
2019-04-26 10:47:33 +00:00
|
|
|
<config verbose="yes" stdin="/null" stdout="/log" stderr="/log">
|
|
|
|
<fstab> <null/> <log/> <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 {
|
2019-04-26 10:47:33 +00:00
|
|
|
noux libc.lib.so vfs.lib.so libm.lib.so
|
|
|
|
libc_noux.lib.so 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
|
|
|
|
2015-05-24 14:36:17 +00:00
|
|
|
run_genode_until {child "noux" exited with exit value 0.*\n} 30
|