# # Build # # generic components set build_components { core init drivers/timer drivers/sd_card test/block } lappend_if [have_spec platform_arndale] build_components drivers/platform build $build_components create_boot_directory # # Config # set config { } append_if [have_spec platform_arndale] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer sd_card_drv test-block } lappend_if [have_spec platform_arndale] boot_modules platform_drv set disk_image "bin/sd_card.img" build_boot_image $boot_modules append qemu_args "-drive file=$disk_image,if=sd,cache=writeback -nographic " if { [file exists $disk_image] == 0 } then { # create empty block device file catch { exec dd if=/dev/zero of=$disk_image bs=1M count=512 } } run_genode_until forever # vi: set ft=tcl :