# # Check used commands # set mkfs.vfat [check_installed mkfs.vfat] 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 FAT-file-system image # catch { exec $dd if=/dev/zero of=bin/fs.raw bs=1M count=16 } catch { exec $mkfs.vfat -F16 bin/fs.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 fs.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/fs.raw puts "\nTest succeeded\n"