From bc33bcd319789029566be4269b129468e23295ca Mon Sep 17 00:00:00 2001 From: arvinzzz Date: Sat, 5 Mar 2022 17:06:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E6=A1=A3=E4=B8=8E=E5=AE=9E?= =?UTF-8?q?=E9=99=85=E4=BB=A3=E7=A0=81=E7=9B=AE=E5=BD=95=E4=B8=8D=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: arvinzzz Change-Id: Ic07896cac1c32de38d86206a5cae9f419f0cf8dd --- arch_spec.md | 17 +++++++++-------- arch_spec_zh.md | 17 +++++++++-------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/arch_spec.md b/arch_spec.md index d63cfca1..ec185ea8 100644 --- a/arch_spec.md +++ b/arch_spec.md @@ -48,7 +48,9 @@ │ ├── lms --- Lite memory sanitizer functions │ ├── net --- Networking functions │ ├── power --- Power management +│ ├── security --- Security isolation │ ├── shell --- Shell function +│ ├── signal --- Signal support │ ├── fs --- File systems │ └── trace --- Trace tool ├── drivers --- driver Kconfig @@ -71,14 +73,13 @@ │   │   └── los_tick.h --- Tick │   └── src ├── targets -│   └── targets -│   └── riscv_nuclei_demo_soc_gcc -│ │ ├── GCC --- Compilation config -│ │ ├── OS_CONFIG --- Board config -│ │ ├── SoC --- SOC codes -│ │ └── Src --- Application codes -│   └── riscv_nuclei_gd32vf103_soc_gcc -│   └── riscv_sifive_fe310_gcc +│   └── riscv_nuclei_demo_soc_gcc +│ │ ├── GCC --- Compilation config +│ │ ├── OS_CONFIG --- Board config +│ │ ├── SoC --- SOC codes +│ │ └── Src --- Application codes +│   └── riscv_nuclei_gd32vf103_soc_gcc +│   └── riscv_sifive_fe310_gcc ├── testsuites --- Kernel testsuites ├── tools --- Kernel tools └── utils diff --git a/arch_spec_zh.md b/arch_spec_zh.md index 93e847e9..7ddf0406 100644 --- a/arch_spec_zh.md +++ b/arch_spec_zh.md @@ -48,7 +48,9 @@ │ ├── lms --- Lite memory sanitizer 机制 │ ├── net --- Network功能 │ ├── power --- 低功耗管理 +│ ├── security --- 安全隔离 │ ├── shell --- shell功能 +│ ├── signal --- signal支持 │ └── trace --- trace 工具 ├── drivers --- 驱动框架Kconfig ├── kal --- 内核抽象层,提供内核对外接口,当前支持CMSIS接口和部分POSIX接口 @@ -70,14 +72,13 @@ │   │   └── los_tick.h --- Tick时钟    └── src ├── targets -│   └── targets -│   └── riscv_nuclei_demo_soc_gcc -│ │ ├── GCC --- 编译相关 -│ │ ├── OS_CONFIG --- 开发板配置功能开关和配置参数 -│ │ ├── SoC --- SOC相关代码 -│ │ └── Src --- Application相关代码 -│   └── riscv_nuclei_gd32vf103_soc_gcc -│   └── riscv_sifive_fe310_gcc +│ └── riscv_nuclei_demo_soc_gcc +│ │ ├── GCC --- 编译相关 +│ │ ├── OS_CONFIG --- 开发板配置功能开关和配置参数 +│ │ ├── SoC --- SOC相关代码 +│ │ └── Src --- Application相关代码 +│ └── riscv_nuclei_gd32vf103_soc_gcc +│ └── riscv_sifive_fe310_gcc ├── testsuites --- 内核测试用例 ├── tools --- 内核工具 └── utils