2013-11-12 16:52:31 +00:00
|
|
|
build { core init drivers/timer noux/minimal server/log_terminal
|
|
|
|
lib/libc_noux noux-pkg/coreutils }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
# strip coreutils binaries and create tar archive
|
|
|
|
exec sh -c "[cross_dev_prefix]strip bin/coreutils/bin/*"
|
|
|
|
exec tar cfv bin/coreutils.tar -h -C bin/coreutils .
|
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config verbose="yes">
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<start name="noux">
|
|
|
|
<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 {
|
2013-11-12 16:52:31 +00:00
|
|
|
core init timer log_terminal ld.lib.so noux libc.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
|
|
|
|
append qemu_args " -m 300 "
|
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
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-07-04 15:14:51 +00:00
|
|
|
exec rm bin/coreutils.tar
|