Searched refs:shell (Results 1 – 21 of 21) sorted by relevance
/DragonOS/kernel/src/ |
H A D | Makefile | 2 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 D | debug-kernel-with-gdb.md | 21 ```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 D | build_system.md | 16 ```shell 28 ```shell 41 ```shell 59 ```shell 107 ```shell 136 ```shell 182 ```shell 190 ```shell 198 ```shell 271 ```shell [all …]
|
H A D | features.md | 124 ### shell命令行程序
|
/DragonOS/.github/workflows/ |
H A D | makefile.yml | 29 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 D | docs.yml | 31 shell: bash -ileo pipefail {0}
|
H A D | docs-multiversion.yml | 34 shell: bash -ileo pipefail {0}
|
/DragonOS/user/ |
H A D | Makefile | 4 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 D | README.md | 7 useradd -c \<comment\> -d \<home\> -G \<group\> -g \<gid\> -s \<shell\> -u \<uid\> username 58 -s\<shell\> 修改用户登入后所使用的 shell。
|
/DragonOS/docs/ |
H A D | Makefile | 15 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 D | rust-quick-start.md | 24 ```shell 28 ```shell
|
H A D | c-cpp-quick-start.md | 9 ```shell
|
/DragonOS/ |
H A D | Makefile | 5 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 D | info.rs | 15 pub shell: String, field 22 info.username, info.uid, info.gid, info.comment, info.home_dir, info.shell in from()
|
H A D | check.rs | 32 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 D | V0.1.2.md | 57 - shell: 修复shell的exec命令对绝对路径的拼接错误问题(#114) 58 - shell: exec命令增加"&"后台运行选项 (#100) 130 * bugfix: 修复shell的exec命令对绝对路径的拼接错误问题
|
H A D | V0.1.9.md | 105 - 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 D | V0.1.1.md | 41 - shell:增加kill命令,可向目标进程发送信号。但由于仍未完善signal机制,因此目标进程暂时不能响应这个信号。
|
H A D | V0.1.3.md | 220 * 修复shell错误地把入口设置为main而不是_start的问题
|
/DragonOS/user/apps/about/ |
H A D | Makefile | 8 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 D | Makefile | 8 SQLITE3_DIR=$(shell pwd)/$(SQLITE_FILENAME)
|