# # \brief Cross-link terminal test # \author Christian Prochaska # \date 2012-05-16 # # # Build # build { core init drivers/timer drivers/pci drivers/framebuffer drivers/input server/terminal_crosslink test/terminal_crosslink } 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 ps2] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer terminal_crosslink test-terminal_crosslink } # 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 vesa] boot_modules vesa_drv lappend_if [have_spec ps2] boot_modules ps2_drv lappend_if [have_spec pl11x] boot_modules pl11x_drv build_boot_image $boot_modules append qemu_args "-nographic -m 64" # # Execute test case # run_genode_until "Test succeeded.*" 5 # vi: set ft=tcl :