2013-07-11 09:43:20 +00:00
|
|
|
if {[expr [have_spec linux] || [have_spec platform_imx53]]} {
|
|
|
|
puts "\nPlatform not supported because of missing UART driver\n"
|
2011-12-22 15:19:25 +00:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2012-05-24 15:06:54 +00:00
|
|
|
build "core init drivers/timer drivers/uart noux/minimal 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="CAP"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="SIGNAL"/>
|
|
|
|
</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>
|
|
|
|
<start name="uart_drv">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Terminal"/></provides>
|
|
|
|
<config>
|
|
|
|
<policy label="noux" uart="1"/>
|
|
|
|
</config>
|
|
|
|
</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 {
|
|
|
|
core init timer uart_drv ld.lib.so noux libc.lib.so libm.lib.so
|
|
|
|
libc_noux.lib.so coreutils.tar
|
|
|
|
}
|
|
|
|
|
2013-03-08 09:45:44 +00:00
|
|
|
if {[is_qemu_available]} {
|
|
|
|
#
|
|
|
|
# Redirect the output of Noux via the virtual serial port 1 into a file to be
|
|
|
|
# dumped after the successful completion of the test.
|
|
|
|
#
|
|
|
|
set noux_output_file "noux_output.log"
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-03-08 09:45:44 +00:00
|
|
|
append qemu_args " -nographic"
|
|
|
|
append qemu_args " -serial mon:stdio"
|
|
|
|
append qemu_args " -serial file:$noux_output_file"
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-03-08 09:45:44 +00:00
|
|
|
if {[have_spec x86_64]} {
|
2012-05-08 14:20:35 +00:00
|
|
|
# coreutils.tar is really huge when built for x86_64
|
|
|
|
append qemu_args " -m 300 "
|
2013-03-08 09:45:44 +00:00
|
|
|
}
|
2012-05-08 14:20:35 +00:00
|
|
|
}
|
|
|
|
|
2012-08-01 12:45:21 +00:00
|
|
|
run_genode_until "child /bin/ls exited with exit value 0.*\n" 30
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-03-08 09:45:44 +00:00
|
|
|
if {[is_qemu_available]} {
|
|
|
|
puts "[exec cat $noux_output_file]"
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-03-08 09:45:44 +00:00
|
|
|
exec rm $noux_output_file
|
|
|
|
}
|
2013-03-20 12:15:30 +00:00
|
|
|
|
2013-07-04 15:14:51 +00:00
|
|
|
exec rm bin/coreutils.tar
|
|
|
|
|
2013-03-20 12:15:30 +00:00
|
|
|
puts "Test succeeded"
|