Header file name
diff --git a/en/device-dev/porting/porting-chip-kernel-overview.md b/en/device-dev/porting/porting-chip-kernel-overview.md
index 8f6702a15194823d1cade17e9ead203896569ab9..9941b2bc5ce9d9faacf2b27f7bdc217971648551 100644
--- a/en/device-dev/porting/porting-chip-kernel-overview.md
+++ b/en/device-dev/porting/porting-chip-kernel-overview.md
@@ -6,7 +6,7 @@
## Porting Scenario
-The chip architecture adaptation process is optional. If the particular chip architecture is supported in the **liteos\_m/kernel/arch** directory, you can directly implement the board adaptation. Otherwise, chip architecture porting is required.
+The chip architecture adaptation process is optional. If the particular chip architecture is supported in the **liteos\_m/arch** directory, you can directly implement the board adaptation. Otherwise, chip architecture porting is required.
## Directory Specifications
@@ -27,22 +27,22 @@ The directory structure of the kernel is described as follows:
```
.
+├── arch --- Code of the kernel instruction architecture layer
+│ ├── arm --- Code of the ARM32 architecture
+│ │ ├── cortex-m3 --- Code of the Cortex-M3 architecture
+│ │ │ ├── iar --- Implementation of the IAR toolchain
+│ │ │ ├── keil --- Implementation of the Keil toolchain
+│ │ │ └── xxx --- Implementation of the particular toolchain
+│ │ └── cortex-m4 --- Code of the Cortex-M4 architecture
+│ │ ├── iar --- Implementation of the IAR toolchain
+│ │ ├── keil --- Implementation of the Keil toolchain
+│ │ └── xxx --- Implementation of the particular toolchain
+│ ├── include --- Header files that declare the APIs required, kernel-independent
+│ └── risc-v --- RISK_V architecture
+│ └── gcc --- Implementation of the GCC toolchain
├── components --- Components available for porting and header files exposed externally
├── kal --- APIs exposed externally, including CMSIS APIs and part of POSIX APIs
├── kernel --- Code for defining the minimum kernel function set
-│ ├── arch --- Code of the kernel instruction architecture layer
-│ │ ├── arm --- Code of the ARM32 architecture
-│ │ │ ├── cortex-m3 --- Code of the Cortex-M3 architecture
-│ │ │ │ ├── iar --- Implementation of the IAR toolchain
-│ │ │ │ ├── keil --- Implementation of the Keil toolchain
-│ │ │ │ └── xxx --- Implementation of the particular toolchain
-│ │ │ └── cortex-m4 --- Code of the Cortex-M4 architecture
-│ │ │ ├── iar --- Implementation of the IAR toolchain
-│ │ │ ├── keil --- Implementation of the Keil toolchain
-│ │ │ └── xxx --- Implementation of the particular toolchain
-│ │ ├── include --- Header files that declare the APIs required, kernel-independent
-│ │ └── risc-v --- RISK_V architecture
-│ │ └── gcc --- Implementation of the IAR toolchain
│ ├── include --- Code for defining the minimum kernel function set
│ └── src --- Code for implementing the minimum kernel function set
└──utils --- Basic code
diff --git a/zh-cn/device-dev/kernel/kernel-mini-overview.md b/zh-cn/device-dev/kernel/kernel-mini-overview.md
index 0966779d95cab06335077285e069b53793abbbc1..cb0c2d42c1efd2b137d9c9358fd247f6b9d3cbcc 100644
--- a/zh-cn/device-dev/kernel/kernel-mini-overview.md
+++ b/zh-cn/device-dev/kernel/kernel-mini-overview.md
@@ -29,9 +29,9 @@ CPU体系架构分为通用架构定义和特定架构定义两层,通用架
|