Home
last modified time | relevance | path

Searched refs:shell (Results 1 – 21 of 21) sorted by relevance

/DragonOS/kernel/src/
H A DMakefile2 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
24 CFLAGS = $(GLOBAL_CFLAGS) -fno-pie $(CFLAGS_UNWIND) -I $(shell pwd) -I $(shell pwd)/include
27 CFLAGS += -I $(shell pwd)/arch/x86_64/include
29 CFLAGS += -I $(shell pwd)/arch/riscv64/include -I $(shell pwd)/arch/riscv64/
65 …$(LD) -b elf64-littleriscv -z muldefs $(LDFLAGS_UNWIND) -o kernel $(shell find . -name "*.o") ../t…
77 @echo $(shell find . -name "*.o")
78 …$(LD) -b elf64-littleriscv -z muldefs $(LDFLAGS_UNWIND) -o kernel $(shell find . -name "*.o") ../t…
93 …$(LD) -b elf64-x86-64 -z muldefs $(LDFLAGS_UNWIND) -o kernel $(shell find . -name "*.o") ../target…
105 @echo $(shell find . -name "*.o")
106 …$(LD) -b elf64-x86-64 -z muldefs $(LDFLAGS_UNWIND) -o kernel $(shell find . -name "*.o") ../target…
/DragonOS/docs/kernel/debug/
H A Ddebug-kernel-with-gdb.md21 ```shell
25 ```shell
40 ```shell
71 ```shell
86 ```shell
98 ```shell
118 ```shell
130 ```shell
143 ```shell
160 ```shell
[all …]
/DragonOS/docs/introduction/
H A Dbuild_system.md16 ```shell
28 ```shell
41 ```shell
59 ```shell
107 ```shell
136 ```shell
182 ```shell
190 ```shell
198 ```shell
271 ```shell
[all …]
H A Dfeatures.md124 ### shell命令行程序
/DragonOS/.github/workflows/
H A Dmakefile.yml29 shell: bash -ileo pipefail {0}
50 shell: bash -ileo pipefail {0}
69 shell: bash -ileo pipefail {0}
91 shell: bash -ileo pipefail {0}
H A Ddocs.yml31 shell: bash -ileo pipefail {0}
H A Ddocs-multiversion.yml34 shell: bash -ileo pipefail {0}
/DragonOS/user/
H A DMakefile4 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
8 DADK_VERSION=$(shell dadk -V | awk 'END {print $$2}')
33 ifneq ($(shell printf '%s\n%s' "$(DADK_VERSION)" "$(MIN_DADK_VERSION)" | sort -V | head -n1), $(MIN…
/DragonOS/user/apps/user-manage/
H A DREADME.md7 useradd -c \<comment\> -d \<home\> -G \<group\> -g \<gid\> -s \<shell\> -u \<uid\> username
58 -s\<shell\>  修改用户登入后所使用的 shell
/DragonOS/docs/
H A DMakefile15 export CURRENT_GIT_COMMIT_HASH := $(shell git rev-parse --short HEAD)
17 GIT_STATUS := $(shell git status --porcelain --untracked-files=no)
/DragonOS/docs/userland/appdev/
H A Drust-quick-start.md24 ```shell
28 ```shell
H A Dc-cpp-quick-start.md9 ```shell
/DragonOS/
H A DMakefile5 export ROOT_PATH=$(shell pwd)
16 OS:=$(shell uname -s)
19 NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
22 NPROCS:=$(shell system_profiler | awk '/Number Of CPUs/{print $4}{next;}')
/DragonOS/user/apps/user-manage/src/check/
H A Dinfo.rs15 pub shell: String, field
22 info.username, info.uid, info.gid, info.comment, info.home_dir, info.shell in from()
H A Dcheck.rs32 info.shell = arg.clone(); in check()
75 if info.shell.is_empty() { in check()
76 info.shell = "/bin/NovaShell".to_string(); in check()
80 check_shell(&info.shell); in check()
255 if let Some(shell) = &info.new_shell { in check()
256 check_shell(shell); in check()
858 fn check_shell(shell: &String) { in check_shell()
859 if let Ok(file) = fs::File::open(shell.clone()) { in check_shell()
861 ErrorHandler::error_handle(format!("{} is not a file", shell), ExitStatus::InvalidArg); in check_shell()
864 ErrorHandler::error_handle(format!("{} doesn't exist", shell), ExitStatus::InvalidArg); in check_shell()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.2.md57 - shell: 修复shell的exec命令对绝对路径的拼接错误问题(#114)
58 - shell: exec命令增加"&"后台运行选项 (#100)
130 * bugfix: 修复shell的exec命令对绝对路径的拼接错误问题
H A DV0.1.9.md105 - featurn: 新增shell程序NovaShell ([#456](https://github.com/DragonOS-Community/DragonOS/pull/456))
297 移除relibc和old libc以及旧的shell (#529)
299 移除relibc和old libc以及旧的shell
365 * 支持目前的shell,改动printk使其与新版tty兼容。
752 更新nova shell的revision为64ad1b282a (#477)
888 NovaShell替换为默认shell (#456)
890 * NovaShell替换为默认shell
962 修复bootstrap的一系列脚本忘了source最新的shell rc的问题 (#453)
974 ```shell
1110 bugfix: 解决shell在exec的时候传递的argv不正确的bug (#437)
[all …]
H A DV0.1.1.md41 - shell:增加kill命令,可向目标进程发送信号。但由于仍未完善signal机制,因此目标进程暂时不能响应这个信号。
H A DV0.1.3.md220 * 修复shell错误地把入口设置为main而不是_start的问题
/DragonOS/user/apps/about/
H A DMakefile8 GIT_COMMIT_SHA1=$(shell git log -n 1 | head -n 1 | cut -d ' ' -f 2 | cut -c1-8)
/DragonOS/user/apps/test_sqlite3/
H A DMakefile8 SQLITE3_DIR=$(shell pwd)/$(SQLITE_FILENAME)