mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 16:26:48 +00:00
* 实现pty,附带测试程序 * fmt ** clippy * 将file层的锁粒度缩小,从而不使用no_preempt。更改pipe在sleep部分的bug * 修复拼写错误
23 lines
401 B
Plaintext
23 lines
401 B
Plaintext
{
|
|
"name": "test_pty",
|
|
"version": "0.1.0",
|
|
"description": "简单的pty测试程序",
|
|
"task_type": {
|
|
"BuildFromSource": {
|
|
"Local": {
|
|
"path": "apps/test_pty"
|
|
}
|
|
}
|
|
},
|
|
"depends": [],
|
|
"build": {
|
|
"build_command": "make install -j $(nproc)"
|
|
},
|
|
"install": {
|
|
"in_dragonos_path": "/bin"
|
|
},
|
|
"clean": {
|
|
"clean_command": "make clean"
|
|
},
|
|
"envs": []
|
|
} |