1# DADK 总控文件 2 3[metadata] 4# Target architecture. Options: x86_64, riscv64 5arch = "x86_64" 6 7# Hypervisor config path 8hypervisor-config = "config/hypervisor.toml" 9 10# RootFS config path 11rootfs-config = "config/rootfs.toml" 12 13# Boot config path 14boot-config = "config/boot.toml" 15 16# System root directory folder (DADK will copy the files in this directory to the root directory of the disk image) 17sysroot-dir = "bin/sysroot" 18 19# DADK Root Cache directory path 20cache-root-dir = "bin/dadk_cache" 21 22# User configuration directory path 23# 这个字段只是临时用于兼容旧版本,v0.2版本重构完成后会删除 24user-config-dir = "user/dadk/config" 25