# # Build # set build_components { core init drivers/timer drivers/framebuffer drivers/input drivers/pci server/dynamic_rom server/nitpicker server/report_rom app/pointer app/menu_view app/scout app/launchpad app/launcher test/nitpicker server/nit_fader } 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 dynamic_rom nitpicker pointer menu_view ld.lib.so libpng.lib.so libc.lib.so libm.lib.so zlib.lib.so menu_view_styles.tar scout launchpad testnit nit_fader report_rom launcher } # 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 lappend_if [have_spec framebuffer] boot_modules fb_drv build_boot_image $boot_modules run_genode_until forever