# # Build # if {![have_include power_on/qemu]} { puts "Run script is only supported on Qemu" exit 0 } set build_components { core init drivers/timer drivers/nic server/nic_bridge test/lwip/http_srv_static test/lwip/http_clnt } source ${genode_dir}/repos/base/run/platform_drv.inc append_platform_drv_build_components build $build_components create_boot_directory # # Generate config # append config { } append_platform_drv_config append config { } install_config $config # # Boot modules # # generic modules append boot_modules { core init timer } [nic_drv_binary] { nic_bridge ld.lib.so libc.lib.so libm.lib.so lwip.lib.so test-http_clnt test-lwip_httpsrv_static } # platform-specific modules lappend_if [have_spec linux] boot_modules fb_sdl append_platform_drv_boot_modules build_boot_image $boot_modules append qemu_args " -nographic " append_if [have_spec x86] qemu_args " -net nic,model=e1000 " append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 " append qemu_args " -net user " run_genode_until ".*\"test-http_clnt\" exited with exit value 0.*\n" 30