# # Build # set build_components { core init drivers/framebuffer drivers/timer server/nitpicker app/examples/textedit } set use_sd_card_driver [expr [have_spec omap4] || [have_spec exynos5]] set use_usb_driver [expr [have_spec omap4] || [have_spec exynos5]] lappend_if $use_sd_card_driver build_components drivers/sd_card lappend_if $use_usb_driver build_components drivers/usb lappend_if [have_spec pci] build_components drivers/pci lappend_if [have_spec pci] build_components drivers/atapi lappend_if [have_spec acpi] build_components drivers/acpi lappend_if [have_spec ps2] build_components drivers/input/ps2 lappend_if [have_spec linux] build_components server/ram_fs lappend_if [expr ![have_spec linux]] build_components server/ffat_fs build $build_components create_boot_directory # # Generate config # set config { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if $use_sd_card_driver config { } append_if [have_spec framebuffer] config { } append_if [expr ![have_spec ps2] && [have_spec usb]] config { } append_if [have_spec ps2] config { } append_if [have_spec linux] config { } append_if [expr ![have_spec linux]] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer nitpicker 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 stdcxx.lib.so } # platform-specific modules lappend_if [have_spec linux] boot_modules fb_sdl lappend_if [have_spec linux] boot_modules ram_fs lappend_if [expr ![have_spec linux]] boot_modules ffat_fs lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec pci] boot_modules atapi_drv lappend_if [have_spec ps2] boot_modules ps2_drv lappend_if [have_spec framebuffer] boot_modules fb_drv lappend_if $use_sd_card_driver boot_modules sd_card_drv lappend_if $use_usb_driver 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