dadk-manifest.toml 754 B

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