fix: 文档与实际代码目录不符

Signed-off-by: arvinzzz <zhaotianyu9@huawei.com>
Change-Id: Ic07896cac1c32de38d86206a5cae9f419f0cf8dd
This commit is contained in:
arvinzzz 2022-03-05 17:06:57 +08:00
parent ae7a374ebb
commit bc33bcd319
2 changed files with 18 additions and 16 deletions

View File

@ -48,7 +48,9 @@
│ ├── lms --- Lite memory sanitizer functions │ ├── lms --- Lite memory sanitizer functions
│ ├── net --- Networking functions │ ├── net --- Networking functions
│ ├── power --- Power management │ ├── power --- Power management
│ ├── security --- Security isolation
│ ├── shell --- Shell function │ ├── shell --- Shell function
│ ├── signal --- Signal support
│ ├── fs --- File systems │ ├── fs --- File systems
│ └── trace --- Trace tool │ └── trace --- Trace tool
├── drivers --- driver Kconfig ├── drivers --- driver Kconfig
@ -71,14 +73,13 @@
│   │   └── los_tick.h --- Tick │   │   └── los_tick.h --- Tick
│   └── src │   └── src
├── targets ├── targets
│   └── targets │   └── riscv_nuclei_demo_soc_gcc
│   └── riscv_nuclei_demo_soc_gcc │ │ ├── GCC --- Compilation config
│ │ ├── GCC --- Compilation config │ │ ├── OS_CONFIG --- Board config
│ │ ├── OS_CONFIG --- Board config │ │ ├── SoC --- SOC codes
│ │ ├── SoC --- SOC codes │ │ └── Src --- Application codes
│ │ └── Src --- Application codes │   └── riscv_nuclei_gd32vf103_soc_gcc
│   └── riscv_nuclei_gd32vf103_soc_gcc │   └── riscv_sifive_fe310_gcc
│   └── riscv_sifive_fe310_gcc
├── testsuites --- Kernel testsuites ├── testsuites --- Kernel testsuites
├── tools --- Kernel tools ├── tools --- Kernel tools
└── utils └── utils

View File

@ -48,7 +48,9 @@
│ ├── lms --- Lite memory sanitizer 机制 │ ├── lms --- Lite memory sanitizer 机制
│ ├── net --- Network功能 │ ├── net --- Network功能
│ ├── power --- 低功耗管理 │ ├── power --- 低功耗管理
│ ├── security --- 安全隔离
│ ├── shell --- shell功能 │ ├── shell --- shell功能
│ ├── signal --- signal支持
│ └── trace --- trace 工具 │ └── trace --- trace 工具
├── drivers --- 驱动框架Kconfig ├── drivers --- 驱动框架Kconfig
├── kal --- 内核抽象层提供内核对外接口当前支持CMSIS接口和部分POSIX接口 ├── kal --- 内核抽象层提供内核对外接口当前支持CMSIS接口和部分POSIX接口
@ -70,14 +72,13 @@
│   │   └── los_tick.h --- Tick时钟 │   │   └── los_tick.h --- Tick时钟
   └── src    └── src
├── targets ├── targets
│   └── targets │ └── riscv_nuclei_demo_soc_gcc
│   └── riscv_nuclei_demo_soc_gcc │ │ ├── GCC --- 编译相关
│ │ ├── GCC --- 编译相关 │ │ ├── OS_CONFIG --- 开发板配置功能开关和配置参数
│ │ ├── OS_CONFIG --- 开发板配置功能开关和配置参数 │ │ ├── SoC --- SOC相关代码
│ │ ├── SoC --- SOC相关代码 │ │ └── Src --- Application相关代码
│ │ └── Src --- Application相关代码 │ └── riscv_nuclei_gd32vf103_soc_gcc
│   └── riscv_nuclei_gd32vf103_soc_gcc │ └── riscv_sifive_fe310_gcc
│   └── riscv_sifive_fe310_gcc
├── testsuites --- 内核测试用例 ├── testsuites --- 内核测试用例
├── tools --- 内核工具 ├── tools --- 内核工具
└── utils └── utils