2012-06-25 14:31:04 +00:00
|
|
|
#
|
|
|
|
# \brief Test for using the lwIP TCP/IP stack over USB
|
|
|
|
# \author Sebastian Sumpf
|
|
|
|
# \date 2012-07-06
|
|
|
|
#
|
|
|
|
# This test case executes a small HTTP server, it has been used on PandaBoard
|
|
|
|
# hardware only, though it should execute but not do anything on other hardware
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2014-02-14 12:36:21 +00:00
|
|
|
set build_components {
|
2012-06-25 14:31:04 +00:00
|
|
|
core init
|
2015-06-08 07:05:32 +00:00
|
|
|
drivers/timer drivers/usb
|
2012-06-25 14:31:04 +00:00
|
|
|
test/lwip/http_srv
|
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
|
|
append_platform_drv_build_components
|
|
|
|
|
2013-11-13 13:10:49 +00:00
|
|
|
lappend_if [have_spec gpio] build_components drivers/gpio
|
|
|
|
|
2014-02-14 12:36:21 +00:00
|
|
|
build $build_components
|
2013-03-04 10:20:42 +00:00
|
|
|
|
2012-06-25 14:31:04 +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>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
|
|
|
<start name="timer">
|
2013-10-24 13:11:15 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
2012-06-25 14:31:04 +00:00
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
|
|
|
<start name="usb_drv">
|
2013-10-24 13:11:15 +00:00
|
|
|
<resource name="RAM" quantum="12M"/>
|
2012-06-25 14:31:04 +00:00
|
|
|
<provides>
|
|
|
|
<service name="Nic"/>
|
|
|
|
</provides>
|
2014-02-14 12:36:21 +00:00
|
|
|
<config uhci="no" ehci="yes" xhci="yes">
|
2014-04-22 09:50:56 +00:00
|
|
|
<nic mac="02:00:00:00:01:01" />
|
2012-06-25 14:31:04 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
|
|
|
<start name="test-lwip_httpsrv">
|
|
|
|
<resource name="RAM" quantum="2M"/>
|
2014-04-14 09:57:22 +00:00
|
|
|
<config>
|
|
|
|
<libc stdout="/dev/log">
|
|
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
|
|
</libc>
|
|
|
|
</config>
|
2013-03-04 10:20:42 +00:00
|
|
|
</start>}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_config
|
2013-06-25 12:19:55 +00:00
|
|
|
|
2013-11-13 13:10:49 +00:00
|
|
|
append_if [have_spec gpio] config {
|
|
|
|
<start name="gpio_drv">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides><service name="Gpio"/></provides>
|
|
|
|
<config/>
|
|
|
|
</start>}
|
|
|
|
|
2013-03-04 10:20:42 +00:00
|
|
|
append config {
|
2012-06-25 14:31:04 +00:00
|
|
|
</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 usb_drv
|
|
|
|
libc.lib.so lwip.lib.so test-lwip_httpsrv
|
2012-06-25 14:31:04 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 07:05:32 +00:00
|
|
|
append_platform_drv_boot_modules
|
2013-11-13 13:10:49 +00:00
|
|
|
lappend_if [have_spec gpio] boot_modules gpio_drv
|
2013-03-04 10:20:42 +00:00
|
|
|
|
2012-06-25 14:31:04 +00:00
|
|
|
build_boot_image $boot_modules
|
|
|
|
|
2014-02-14 12:36:21 +00:00
|
|
|
append qemu_args " -m 256 -nographic"
|
|
|
|
|
2013-03-05 14:19:54 +00:00
|
|
|
run_genode_until forever
|
2012-06-25 14:31:04 +00:00
|
|
|
# vi: set ft=tcl :
|