if {[have_spec arm]} { assert_spec arm_v7 } # # Check used commands # set mke2fs [check_installed mke2fs] set dd [check_installed dd] # # Build # set build_components { core init drivers/timer server/ram_blk server/rump_fs test/libc_vfs } build $build_components # # Build EXT2-file-system image # catch { exec $dd if=/dev/zero of=bin/ext2.raw bs=1M count=16 } catch { exec $mke2fs -F bin/ext2.raw } create_boot_directory # # Generate config # append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer test-libc_vfs ram_blk rump.lib.so rump_fs.lib.so rump_fs ld.lib.so ext2.raw libc.lib.so } build_boot_image $boot_modules append qemu_args " -m 256 -nographic" run_genode_until {.*child "test-libc_vfs" exited with exit value 0.*} 60 exec rm -f bin/ext2.raw