2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
# \brief Test for the TCP terminal
|
|
|
|
# \author Norman Feske
|
|
|
|
# \date 2011-09-08
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# TODO: Add support for Linux via user-level networking (using the
|
|
|
|
# tun/tap proxy driver at os/src/drivers/nic/linux)
|
|
|
|
#
|
|
|
|
if {[have_spec linux]} {
|
|
|
|
puts "Run script does not support Linux."; exit 0 }
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2014-07-08 14:20:49 +00:00
|
|
|
set build_components {
|
2011-12-22 15:19:25 +00:00
|
|
|
core init
|
2014-06-04 10:39:27 +00:00
|
|
|
drivers/timer drivers/nic
|
2011-12-22 15:19:25 +00:00
|
|
|
server/tcp_terminal
|
|
|
|
test/terminal_echo
|
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
2014-06-04 10:39:27 +00:00
|
|
|
|
2014-07-08 14:20:49 +00:00
|
|
|
build $build_components
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
set config {
|
|
|
|
<config verbose="yes">
|
|
|
|
<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>
|
2015-06-08 07:05:32 +00:00
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
2011-12-22 15:19:25 +00:00
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<start name="timer">
|
2013-04-17 08:30:14 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="nic_drv">
|
2016-10-07 13:08:06 +00:00
|
|
|
<resource name="RAM" quantum="4M"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<provides> <service name="Nic"/> </provides>
|
|
|
|
</start>
|
2017-05-07 20:36:11 +00:00
|
|
|
<start name="tcp_terminal" caps="200">
|
2013-04-17 08:30:14 +00:00
|
|
|
<resource name="RAM" quantum="2560K"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<provides> <service name="Terminal"/> </provides>
|
|
|
|
<config>
|
2016-11-24 14:28:32 +00:00
|
|
|
<policy label_prefix="test-terminal_echo" port="8888"/>
|
2017-02-23 17:59:53 +00:00
|
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
|
|
<libc stdout="/dev/log"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="test-terminal_echo">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
</start>}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_config
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
append config {
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
install_config $config
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic modules
|
|
|
|
set boot_modules {
|
2016-12-01 18:00:11 +00:00
|
|
|
core ld.lib.so init timer
|
2011-12-22 15:19:25 +00:00
|
|
|
nic_drv
|
2017-02-23 17:59:53 +00:00
|
|
|
libc.lib.so pthread.lib.so lwip.lib.so libc_pipe.lib.so
|
2011-12-22 15:19:25 +00:00
|
|
|
tcp_terminal
|
|
|
|
test-terminal_echo
|
|
|
|
}
|
|
|
|
|
|
|
|
# platform-specific modules
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_boot_modules
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
|
|
|
#
|
|
|
|
# Execute test
|
|
|
|
#
|
|
|
|
|
|
|
|
# qemu config
|
2017-05-23 13:05:55 +00:00
|
|
|
append qemu_args " -nographic "
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2016-06-22 13:05:57 +00:00
|
|
|
append_if [have_spec x86] qemu_args " -net nic,model=e1000 "
|
2011-12-22 15:19:25 +00:00
|
|
|
append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 "
|
|
|
|
|
|
|
|
append qemu_args " -net user -redir tcp:5555::8888 "
|
|
|
|
|
|
|
|
run_genode_until forever
|
|
|
|
|
|
|
|
#
|
|
|
|
# Now, connect via 'telnet localhost 5555'
|
|
|
|
#
|
|
|
|
|
|
|
|
# vi: set ft=tcl :
|