mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 02:46:47 +00:00
* feat(filesystem): 引入Umount系统调用 * 将所有ENOSYS误用更正 * 修复了一个使同一个挂载点可以挂载2个文件系统的bug * 统一注释,增强程序稳定性,统一接口。注意:Umount时在fatfs的路径要使用大写,此受限于当前文件系统设计。
24 lines
386 B
Plaintext
24 lines
386 B
Plaintext
{
|
|
"name": "test_ramfs",
|
|
"version": "0.1.0",
|
|
"description": "ramfs test bench",
|
|
"task_type": {
|
|
"BuildFromSource": {
|
|
"Local": {
|
|
"path": "apps/test_ramfs"
|
|
}
|
|
}
|
|
},
|
|
"depends": [],
|
|
"build": {
|
|
"build_command": "make install"
|
|
},
|
|
"install": {
|
|
"in_dragonos_path": "/bin"
|
|
},
|
|
"clean": {
|
|
"clean_command": "make clean"
|
|
},
|
|
"envs": []
|
|
}
|