# # \brief Showcases terminal_log server # \author Stefan Kalkowski # \date 2012-05-21 # build { core init drivers/framebuffer drivers/input drivers/pci server/nitpicker server/nit_fb server/terminal server/terminal_log test/nitpicker } create_boot_directory 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_if [expr ! [have_spec sdl]] config { } append config { } install_config $config # generic modules set boot_modules { core init timer nitpicker launchpad testnit nit_fb terminal terminal_log } # 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