# # Build # build { core init drivers/input/ps2 drivers/pci drivers/framebuffer drivers/timer server/nitpicker server/loader server/tar_rom test/nitpicker test/qt5/qpluginwidget } create_boot_directory # # Generate config # set 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 # exec sh -c "ln -sf ../test/qt5/qpluginwidget/test-plugin.tar bin/" # generic modules set boot_modules { core init timer nitpicker loader tar_rom testnit test-qpluginwidget freetype.lib.so gallium.lib.so icu.lib.so ld.lib.so libc.lib.so libc_lock_pipe.lib.so libcrypto.lib.so libm.lib.so libpng.lib.so libssl.lib.so jpeg.lib.so pthread.lib.so qt5_core.lib.so qt5_dejavusans.lib.so qt5_gui.lib.so qt5_qnitpickerviewwidget.lib.so qt5_qpluginwidget.lib.so qt5_widgets.lib.so qt5_xml.lib.so qt5_network.lib.so zlib.lib.so test-plugin.tar stdcxx.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 128" run_genode_until forever