if {[have_spec arm]} { assert_spec arm_v7 } if {[get_cmd_switch --autopilot] && [have_board virt_qemu_riscv]} { puts "Autopilot mode is not supported on this platform." exit 0 } build { core init timer lib/ld lib/libc lib/vfs server/vfs_block server/vfs lib/vfs_rump lib/vfs_import test/libc_vfs } # # Check used commands # set mke2fs [installed_command mke2fs] set dd [installed_command dd] # # 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 install_config { } build_boot_image [list {*}[build_artifacts] ext2.raw] append qemu_args " -nographic" run_genode_until {.*child "test-libc_vfs" exited with exit value 0.*} 80 exec rm -f bin/ext2.raw