# # Build # build { core init test/framebuffer drivers/framebuffer drivers/timer } create_boot_directory # # Generate config # append config { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if [have_spec vesa] config { } append_if [have_spec pl11x] config { } append_if [have_spec omap4] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer test-framebuffer } # platform-specific modules lappend_if [have_spec sdl] boot_modules fb_sdl lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec vesa] boot_modules vesa_drv lappend_if [have_spec pl11x] boot_modules pl11x_drv lappend_if [have_spec omap4] boot_modules omap4_fb_drv build_boot_image $boot_modules run_genode_until forever