# # Build # if {![have_include power_on/qemu]} { puts "Run script is only supported on Qemu" exit 0 } set build_components { core init timer drivers/nic server/nic_bridge test/lwip/http_srv test/lwip/http_clnt lib/vfs/lwip } 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 vfs.lib.so test-http_clnt test-lwip_httpsrv vfs_lwip.lib.so } # 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 " proc qemu_nic_model {} { if [have_spec x86] { return e1000 } if [have_spec lan9118] { return lan9118 } if [have_spec cadence_gem] { return cadence_gem } return nic_model_missing } append qemu_args " -netdev user,id=net0 " append qemu_args " -net nic,model=[qemu_nic_model],netdev=net0 " append done_string {.*?\[init -> client_3] .\[31mError: Nic-session creation failed} append done_string {.*?\[client_1 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:42:0.} append done_string {.*?\[client_2 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:79:00} append done_string {.*?\[server_1 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:42:0.} append done_string {.*?\[server_2 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:23:00} append done_string {.*?"client_." exited with exit value 0} append done_string {.*?"client_." exited with exit value 0} append done_string {.*?\n} run_genode_until $done_string 40