dadk-manifest.toml 907 B

123456789101112131415161718192021222324252627282930
  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. # Builer version, affect the behavior of image generation
  7. # Options: v1, v2
  8. # Default: v1, to be compatible with the old version
  9. builder-version = "v2"
  10. # Hypervisor config path
  11. hypervisor-config = "config/hypervisor.toml"
  12. # RootFS config path
  13. rootfs-config = "config/rootfs.toml"
  14. # Boot config path
  15. boot-config = "config/boot.toml"
  16. # System root directory folder (DADK will copy the files in this directory to the root directory of the disk image)
  17. sysroot-dir = "fake_dragonos_sysroot"
  18. # DADK Root Cache directory path
  19. cache-root-dir = "fake_dadk_cache_root"
  20. # User configuration directory path
  21. # 这个字段只是临时用于兼容旧版本,v0.2版本重构完成后会删除
  22. user-config-dir = "dadk_config_v1"