# # Build # set build_components { core init drivers/timer test/sdl drivers/framebuffer drivers/pci drivers/input } build $build_components create_boot_directory # # Generate config # append config { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if [have_spec framebuffer] config { } append_if [have_spec ps2] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer test-sdl ld.lib.so libc.lib.so sdl.lib.so pthread.lib.so } # 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 framebuffer] boot_modules fb_drv lappend_if [have_spec ps2] boot_modules ps2_drv build_boot_image $boot_modules append qemu_args " -m 256 " run_genode_until forever