mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
Instead of having a generic "virt_qemu" board use "virt_qemu_<arch>" in order to have a clean distinction between boards. Current supported boards are "virt_qemu_arm_v7a", "virt_qemu_arm_v8a", and "virt_qemu_riscv". issue #4034
16 lines
418 B
Plaintext
16 lines
418 B
Plaintext
if {[get_cmd_switch --autopilot] && [have_board virt_qemu_riscv]} {
|
|
puts "Autopilot mode is not supported on this platform."
|
|
exit 0
|
|
}
|
|
|
|
set mkfs_cmd [installed_command mkfs.vfat]
|
|
set mkfs_opts "-F32 -nlibc_vfs"
|
|
|
|
set test_build_components lib/vfs/fatfs
|
|
set test_vfs_config "<fatfs/>"
|
|
set test_boot_modules vfs_fatfs.lib.so
|
|
|
|
set use_vfs_server 1
|
|
|
|
source ${genode_dir}/repos/libports/run/libc_vfs_filesystem_test.inc
|