25 lines
651 B
TOML
25 lines
651 B
TOML
|
# DADK 总控文件
|
|||
|
|
|||
|
[metadata]
|
|||
|
# Target architecture. Options: x86_64, riscv64
|
|||
|
arch = "x86_64"
|
|||
|
|
|||
|
# Hypervisor config path
|
|||
|
hypervisor-config = "config/hypervisor.toml"
|
|||
|
|
|||
|
# RootFS config path
|
|||
|
rootfs-config = "config/rootfs.toml"
|
|||
|
|
|||
|
# Boot config path
|
|||
|
boot-config = "config/boot.toml"
|
|||
|
|
|||
|
# System root directory folder (DADK will copy the files in this directory to the root directory of the disk image)
|
|||
|
sysroot-dir = "bin/sysroot"
|
|||
|
|
|||
|
# DADK Root Cache directory path
|
|||
|
cache-root-dir = "bin/dadk_cache"
|
|||
|
|
|||
|
# User configuration directory path
|
|||
|
# 这个字段只是临时用于兼容旧版本,v0.2版本重构完成后会删除
|
|||
|
user-config-dir = "user/dadk/config"
|