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