mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
* 添加busybox的编译 * 完善tty job control的逻辑 * 修改copy_sighand的逻辑,符合Linux语义 * 以busybox作为启动shell去运行 * 修改setsid的逻辑 * 解决前台进程组无法处理信号的问题 * 移除ProcessBasicInfo其中的pgid和sid信息 * 修改setsid * 新增get_pcb_info * 在etc目录下新增必要的文件 * 改用busybox init作为引导程序 * 恢复dragonreach文件 * 修改busybox编译选项,能够读取环境变量 * 先让SYS_RT_SIGTIMEDWAIT返回Ok(0),能够正常进入系统 * 一些小更改 * 删除get_pcb_info * 增加对默认termios的判断 * 完成backspace的修复 * 更改inittab,在shell启动之后更改termios * 增加executable_path信息 * 补充proc下的exe链接文件以及读取逻辑 * 更改PosixTermios,使用stty完成erase的设置 * 用busybox作为引导程序 * 修改波特率的获取 * 修改函数方法 * 在baud_rate方法中添加对于cbaud的与操作 * 为rv64下的SigSet实现From<Signal> * refactor(driver): 移除`#[derive(Debug)]`并手动实现`Debug` trait 移除`VirtIOBlkDevice`、`VirtIOConsoleDevice`和`VirtIONetDevice`的`#[derive(Debug)]`,并手动实现`Debug` trait以提供更详细的调试信息。 Co-authored-by: longjin <longjin@DragonOS.org>
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
# 用户程序名称
|
||
name = "busybox"
|
||
# 版本号
|
||
version = "1.35.0"
|
||
# 用户程序描述信息
|
||
description = ""
|
||
# (可选)是否只构建一次,如果为true,DADK会在构建成功后,将构建结果缓存起来,下次构建时,直接使用缓存的构建结果
|
||
build-once = false
|
||
# (可选) 是否只安装一次,如果为true,DADK会在安装成功后,不再重复安装
|
||
install-once = false
|
||
# 目标架构
|
||
# 可选值:"x86_64", "aarch64", "riscv64"
|
||
target-arch = ["x86_64"]
|
||
# 任务源
|
||
[task-source]
|
||
# 构建类型
|
||
# 可选值:"build-from_source", "install-from-prebuilt"
|
||
type = "build-from-source"
|
||
# 构建来源
|
||
# "build_from_source" 可选值:"git", "local", "archive"
|
||
# "install_from_prebuilt" 可选值:"local", "archive"
|
||
source = "local"
|
||
# 路径或URL
|
||
source-path = "user/apps/busybox"
|
||
# 构建相关信息
|
||
[build]
|
||
# (可选)构建命令
|
||
build-command = "make install"
|
||
# 安装相关信息
|
||
[install]
|
||
# (可选)安装到DragonOS的路径
|
||
in-dragonos-path = "/bin"
|
||
# 清除相关信息
|
||
[clean]
|
||
# (可选)清除命令
|
||
clean-command = "make distclean"
|