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="RAM"/>
|
|
|
|
<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>
|
|
|
|
<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">
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
|
|
|
<provides> <service name="Nic"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="tcp_terminal">
|
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>
|
|
|
|
<policy label="test-terminal_echo" port="8888"/>
|
2014-04-14 09:57:22 +00:00
|
|
|
<libc stdout="/dev/log">
|
|
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
2015-06-08 07:05:32 +00:00
|
|
|
</libc>
|
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 {
|
|
|
|
core init timer
|
|
|
|
nic_drv
|
2016-03-06 14:21:23 +00:00
|
|
|
ld.lib.so libc.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
|
|
|
|
append qemu_args " -m 128 -nographic "
|
|
|
|
|
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 :
|