# # \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 # set build_components { core init timer drivers/usb_host drivers/usb_net test/lwip/http_srv lib/vfs/lwip } lappend_if [have_spec gpio] build_components drivers/gpio source ${genode_dir}/repos/base/run/platform_drv.inc append_platform_drv_build_components build $build_components proc gpio_drv { } { if {[have_spec rpi] && [have_spec hw]} { return hw_gpio_drv } if {[have_spec rpi] && [have_spec foc]} { return foc_gpio_drv } return gpio_drv } create_boot_directory # # Generate config # append config { } append_if [have_spec gpio] config " " append_platform_drv_config append config { } append config "" append config { } append_if [have_spec arndale] config { } append_if [expr [have_spec panda] || [have_spec rpi] ] config { } append_if [have_spec x86] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer usb_net_drv ld.lib.so libc.lib.so vfs.lib.so vfs_lwip.lib.so test-lwip_httpsrv } append boot_modules [usb_host_drv_binary] lappend_if [have_spec gpio] boot_modules [gpio_drv] append_platform_drv_boot_modules build_boot_image $boot_modules append qemu_args " -nographic" run_genode_until forever # vi: set ft=tcl :