xref: /DragonOS/user/dadk/config/dragon_reach-0.1.0.toml (revision e8b1db320d9014e92c1f5272c7a7e6dafac08b90)
1*e8b1db32SLoGin# 用户程序名称
2*e8b1db32SLoGinname = "DragonReach"
3*e8b1db32SLoGin
4*e8b1db32SLoGin# 版本号
5*e8b1db32SLoGinversion = "0.1.0"
6*e8b1db32SLoGin
7*e8b1db32SLoGin# 用户程序描述信息
8*e8b1db32SLoGindescription = "init程序"
9*e8b1db32SLoGin
10*e8b1db32SLoGin# 目标架构
11*e8b1db32SLoGintarget-arch = ["x86_64"]
12*e8b1db32SLoGin
13*e8b1db32SLoGin# 是否只构建一次
14*e8b1db32SLoGinbuild-once = false
15*e8b1db32SLoGin
16*e8b1db32SLoGin# 是否只安装一次
17*e8b1db32SLoGininstall-once = false
18*e8b1db32SLoGin
19*e8b1db32SLoGin# 任务源
20*e8b1db32SLoGin[task-source]
21*e8b1db32SLoGin# 构建类型
22*e8b1db32SLoGintype = "build-from-source"
23*e8b1db32SLoGin# 构建来源
24*e8b1db32SLoGinsource = "git"
25*e8b1db32SLoGin# 路径或URL
26*e8b1db32SLoGinsource-path = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/DragonReach.git"
27*e8b1db32SLoGin# git标签或分支
28*e8b1db32SLoGinrevision = "e945c217b3"
29*e8b1db32SLoGin
30*e8b1db32SLoGin# 构建相关信息
31*e8b1db32SLoGin[build]
32*e8b1db32SLoGin# 构建命令
33*e8b1db32SLoGinbuild-command = "make install"
34*e8b1db32SLoGin
35*e8b1db32SLoGin# 安装相关信息
36*e8b1db32SLoGin[install]
37*e8b1db32SLoGin# 安装到DragonOS的路径
38*e8b1db32SLoGinin-dragonos-path = "/"
39*e8b1db32SLoGin
40*e8b1db32SLoGin# 清除相关信息
41*e8b1db32SLoGin[clean]
42*e8b1db32SLoGin# 清除命令
43*e8b1db32SLoGinclean-command = "make clean"
44*e8b1db32SLoGin
45*e8b1db32SLoGin# 依赖项
46*e8b1db32SLoGin# 注意:因为没有依赖项,所以这里不包含[[depends]]部分
47*e8b1db32SLoGin
48*e8b1db32SLoGin# 环境变量
49*e8b1db32SLoGin# 注意:因为没有环境变量,所以这里不包含[[envs]]部分
50