# # Build # build { core init drivers/input/ps2 drivers/pci drivers/atapi drivers/sd_card drivers/framebuffer drivers/timer drivers/usb server/ffat_fs server/nitpicker app/examples/textedit } create_boot_directory # # Generate config # set config { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if [expr [have_spec pl180] || [have_spec omap4]] config { } append_if [have_spec vesa] config { } append_if [have_spec omap4] config { } append_if [expr ![have_spec ps2] && [have_spec usb]] 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 nitpicker ffat_fs textedit dejavusans.lib.so freetype.lib.so ld.lib.so libc.lib.so libc_lock_pipe.lib.so libc_fs.lib.so libm.lib.so libpng.lib.so jpeg.lib.so qt_core.lib.so qt_gui.lib.so zlib.lib.so usb_drv } # 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 pci] boot_modules atapi_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 lappend_if [have_spec omap4] boot_modules sd_card_drv lappend_if [have_spec omap4] boot_modules omap4_fb_drv lappend_if [have_spec omap4] boot_modules usb_drv build_boot_image $boot_modules set disk_image "bin/test.hda" set cmd "dd if=/dev/zero of=$disk_image bs=1024 count=65536" puts "creating disk image: $cmd" catch { exec sh -c $cmd } set cmd "mkfs.vfat -F32 $disk_image" puts "formating disk image with vfat file system: $cmd" catch { exec sh -c $cmd } append_if [have_spec pci] qemu_args " -hda $disk_image -boot order=d " append qemu_args " -m 128" run_genode_until forever