mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 12:16:48 +00:00
* 1.修复了当传入ahci驱动的缓冲区地址为用户缓冲区时,产生的内存越界问题.(采用分配内核缓冲区的方式临时解决) 2.新增http server * 把libssl-dev添加到bootstrap.sh * http_server增加对父级相对路径的安全检查,防止访问系统内的其他文件 * 检查空指针情况 * 解决由于链接时,crt*.o未按照升序排列导致init段链接错误的问题
28 lines
453 B
Plaintext
28 lines
453 B
Plaintext
{
|
|
"name": "Http_Server",
|
|
"version": "0.1.0",
|
|
"description": "一个简单的http server",
|
|
"task_type": {
|
|
"BuildFromSource": {
|
|
"Local": {
|
|
"path": "apps/http_server"
|
|
}
|
|
}
|
|
},
|
|
"depends": [
|
|
{
|
|
"name": "relibc",
|
|
"version": "0.1.0"
|
|
}
|
|
],
|
|
"build": {
|
|
"build_command": "make"
|
|
},
|
|
"install": {
|
|
"in_dragonos_path": "/bin"
|
|
},
|
|
"clean": {
|
|
"clean_command": "make clean"
|
|
},
|
|
"envs": []
|
|
} |