# # Build # set build_components { core init drivers/timer drivers/pci drivers/nic server/nic_bridge test/lwip/http_srv_static test/lwip/http_clnt } build $build_components create_boot_directory # # Generate config # append config { } append_if [have_spec pci] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer nic_drv nic_bridge ld.lib.so libc.lib.so lwip.lib.so test-http_clnt test-lwip_httpsrv_static } # platform-specific modules lappend_if [have_spec linux] boot_modules fb_sdl lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec ps2] boot_modules ps2_drv build_boot_image $boot_modules append qemu_args " -m 512 " append_if [have_spec x86] qemu_args " -net nic,model=pcnet " append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 " append qemu_args " -net user " run_genode_until forever