# # Build # set build_components { core init timer drivers/input drivers/nic server/nic_bridge app/lighttpd 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 { # lighttpd configuration server.port = 80 server.document-root = "/website" server.event-handler = "select" server.network-backend = "write" index-file.names = ( "index.xhtml", "index.html", "index.htm" ) mimetype.assign = ( ".html" => "text/html", ".htm" => "text/html" ) Hello

Hello Genode!

I am bold ;-)
} 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 posix.lib.so lwip_legacy.lib.so test-http_clnt libm.lib.so zlib.lib.so lighttpd } # 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 -serial mon:stdio " 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 " run_genode_until forever