2022-08-09 11:32:38 +00:00
|
|
|
if {[get_cmd_switch --autopilot] && [have_board virt_qemu_riscv]} {
|
2021-02-24 11:04:56 +00:00
|
|
|
puts "Autopilot mode is not supported on this platform."
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2018-06-19 17:55:04 +00:00
|
|
|
set mkfs_cmd [installed_command mke2fs]
|
2017-07-31 14:56:01 +00:00
|
|
|
set mkfs_opts "-F"
|
2015-10-05 09:13:01 +00:00
|
|
|
|
2022-09-01 11:12:13 +00:00
|
|
|
set test_build_components "lib/vfs_rump"
|
2015-10-05 09:13:01 +00:00
|
|
|
|
2022-09-15 12:05:06 +00:00
|
|
|
set test_vfs_config "<rump fs=\"ext2fs\" ram=\"10M\" writeable=\"yes\"/>"
|
2015-10-05 09:13:01 +00:00
|
|
|
|
2017-07-31 14:56:01 +00:00
|
|
|
set test_boot_modules {
|
2015-10-05 09:13:01 +00:00
|
|
|
rump_fs.lib.so
|
|
|
|
rump.lib.so
|
|
|
|
vfs_rump.lib.so
|
|
|
|
}
|
|
|
|
|
2017-07-31 14:56:01 +00:00
|
|
|
set use_vfs_server 1
|
2015-10-05 09:13:01 +00:00
|
|
|
|
2017-07-31 14:56:01 +00:00
|
|
|
source ${genode_dir}/repos/libports/run/libc_vfs_filesystem_test.inc
|