manifest-x86_64.toml 818 B

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