create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/src/acpi_drv \ [depot_user]/src/ahci_drv \ [depot_user]/src/init \ [depot_user]/src/libc \ [depot_user]/src/ncurses \ [depot_user]/src/platform_drv \ [depot_user]/src/posix \ [depot_user]/src/report_rom \ [depot_user]/src/stdcxx \ [depot_user]/src/vfs build { app/sgdisk } set config { 2000-01-01 00:00 } install_config $config build_boot_image { sgdisk libuuid.lib.so popt.lib.so } # Create empty image file! set image_file "bin/image.raw" set image_size 20 eval "exec -ignorestderr dd if=/dev/zero of=$image_file bs=1M count=$image_size" append qemu_args " -nographic -device ahci,id=ahci " append qemu_args " -drive id=disk,file=$image_file,format=raw,if=none -device ide-hd,drive=disk,bus=ahci.0 -boot d " run_genode_until ".*child \"sgdisk\" exited.*\n" 20