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