mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
* la64能够进入到kernel_main * ci: 添加为ubuntu编译qemu-loongarch64的脚本 * feat: la64能输出hello world * la64 安装gcc && 配置github ci * chore: 更新CI工作流和构建脚本中的Docker镜像版本至v1.10 Signed-off-by: longjin <longjin@DragonOS.org>
25 lines
664 B
TOML
25 lines
664 B
TOML
# DADK 总控文件
|
||
|
||
[metadata]
|
||
# Target architecture. Options: x86_64, riscv64, loongarch64
|
||
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"
|