dadk-manifest.toml 651 B

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