build { core init drivers/timer app/mupdf drivers/framebuffer drivers/pci drivers/input } create_boot_directory 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 # # Download test PDF file # if {![file exist bin/test.pdf]} { set pdf_url "http://genode-labs.com/publications/genode-fpga-graphics-2009.pdf" catch { exec wget $pdf_url -O bin/test.pdf } } if {![file exist bin/test.pdf]} { puts stderr "Could not download test PDF from '$pdf_url'" exit 1 } set boot_modules { core init ld.lib.so timer mupdf libc.lib.so libm.lib.so openjpeg.lib.so freetype.lib.so libpng.lib.so zlib.lib.so jbig2dec.lib.so mupdf.lib.so jpeg.lib.so test.pdf } 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 768" run_genode_until forever