1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- name = "dmesg"
- version = "0.1.0"
- description = "查看内核日志"
- build-once = false
- install-once = false
- target-arch = ["x86_64"]
- [task-source]
- type = "build-from-source"
- source = "local"
- source-path = "user/apps/dmesg"
- [build]
- build-command = "make install -j $(nproc)"
- [install]
- in-dragonos-path = "/bin"
- [clean]
- clean-command = "make clean"
|