1# 内核子系统<a name="ZH-CN_TOPIC_0000001077309884"></a> 2 3- [简介](#section11660541593) 4- [LiteOS](#section6253122153515) 5- [Linux](#section143373618411) 6- [目录](#section21571344112) 7- [约束](#section19647171710417) 8- [使用](#section1393789267) 9 - [LiteOS使用说明](#section118811457303) 10 - [linux使用说明](#section1352114469620) 11 12- [构建说明](#section19369206113115) 13- [相关仓](#section27639463106) 14 15## 简介<a name="section11660541593"></a> 16 17OpenHarmony针对不同量级的系统,分别使用了不同形态的内核,分别为LiteOS和Linux。在轻量系统、小型系统可以选用LiteOS;在小型系统和标准系统上可以选用Linux。 18 19<a name="table91002058194612"></a> 20<table><thead align="left"><tr id="row010015589464"><th class="cellrowborder" valign="top" width="25%" id="mcps1.2.5.1.1"><p id="p310015824612"><a name="p310015824612"></a><a name="p310015824612"></a>系统级别</p> 21</th> 22<th class="cellrowborder" valign="top" width="25%" id="mcps1.2.5.1.2"><p id="p910013586463"><a name="p910013586463"></a><a name="p910013586463"></a>轻量系统</p> 23</th> 24<th class="cellrowborder" valign="top" width="25%" id="mcps1.2.5.1.3"><p id="p14100858164615"><a name="p14100858164615"></a><a name="p14100858164615"></a>小型系统</p> 25</th> 26<th class="cellrowborder" valign="top" width="25%" id="mcps1.2.5.1.4"><p id="p191001158154610"><a name="p191001158154610"></a><a name="p191001158154610"></a>标准系统</p> 27</th> 28</tr> 29</thead> 30<tbody><tr id="row18100165894619"><td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.1 "><p id="p110055824611"><a name="p110055824611"></a><a name="p110055824611"></a>LiteOS</p> 31</td> 32<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.2 "><p id="p3100175815461"><a name="p3100175815461"></a><a name="p3100175815461"></a>√</p> 33</td> 34<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.3 "><p id="p15762194124714"><a name="p15762194124714"></a><a name="p15762194124714"></a>√</p> 35</td> 36<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.4 "><p id="p647872125416"><a name="p647872125416"></a><a name="p647872125416"></a>×</p> 37</td> 38</tr> 39<tr id="row15104331164711"><td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.1 "><p id="p15104163120477"><a name="p15104163120477"></a><a name="p15104163120477"></a>Linux</p> 40</td> 41<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.2 "><p id="p15762194124714"><a name="p15762194124714"></a><a name="p15762194124714"></a>×</p> 42<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.3 "><p id="p15762194124714"><a name="p15762194124714"></a><a name="p15762194124714"></a>√</p> 43<td class="cellrowborder" valign="top" width="25%" headers="mcps1.2.5.1.4 "><p id="p4251543134711"><a name="p4251543134711"></a><a name="p4251543134711"></a>√</p> 44</td> 45</tr> 46</tbody> 47</table> 48 49## LiteOS<a name="section6253122153515"></a> 50 51OpenHarmony LiteOS内核是面向IoT领域的实时操作系统内核,它同时具备RTOS轻快和Linux易用的特点。 52 53OpenHarmony LiteOS内核主要包括进程和线程调度、内存管理、IPC机制、timer管理等内核基本功能。 54 55OpenHarmony LiteOS内核的源代码分为 kernel\_liteos\_a 和 kernel\_liteos\_m 这2个代码仓库,其中kernel\_liteos\_a主要针对小型系统(small system)和标准系统(standard system),而kernel\_liteos\_m则主要针对轻量系统(mini system),下面主要针对kernel\_liteos\_a代码仓库进行介绍。图1为OpenHarmony LiteOS-A内核架构图: 56 57**图 1** OpenHarmony LiteOS-A内核架构图<a name="fig225412228353"></a> 58![](figures/OpenHarmony-LiteOS-A内核架构图.png "OpenHarmony-LiteOS-A内核架构图") 59 60## Linux<a name="section143373618411"></a> 61 62OpenHarmony的Linux内核基于开源Linux内核LTS **4.19.y / 5.10.y** 分支演进,在此基线基础上,回合CVE补丁及OpenHarmony特性,作为OpenHarmony Common Kernel基线。针对不同的芯片,各厂商合入对应的板级驱动补丁,完成对OpenHarmony的基线适配。 63 64Linux社区LTS 4.19.y分支信息请查看[kernel官网](https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=linux-4.19.y); 65 66Linux社区LTS 5.10.y分支信息请查看[kernel官网](https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=linux-5.10.y)。 67 68内核的Patch组成模块,在编译构建流程中,针对具体芯片平台,合入对应的架构驱动代码,进行编译对应的内核镜像。所有补丁来源均遵守GPL-2.0协议。 69 70## 目录<a name="section21571344112"></a> 71 72``` 73kernel/ 74├── linux 75│ ├── linux-4.19 # OpenHarmony linux-4.19 Common kernel 76│ ├── linux-5.10 # OpenHarmony linux-5.10 Common kernel 77│ ├── build 78│ │ ├── BUILD.gn # 编译框架GN文件 79│ │ ├── kernel.mk # 内核编译文件 80│ │ └── ohos.build # 内核编译组件文件 81│ ├── patches 82│ │ ├── linux-4.19 # linux-4.19 相关patch 83│ │ │ ├── common_patch 84│ │ │ │ └── hdf.patch # linux-4.19 HDF patches 85│ │ │ └── hi3516dv300_patch 86│ │ │ └── hi3516dv300.patch # linux-4.19 Hi3516D V300 SOC patches 87│ │ └── linux-5.10 88│ │ ├── common_patch 89│ │ │ └── hdf.patch # linux-5.10 HDF patches 90│ │ └── hi3516dv300_patch 91│ │ │ └── hi3516dv300.patch # linux-5.10 Hi3516D V300 SOC patches 92│ │ └── rkrk3568_patch 93│ │ ├── kernel.patch # linux-5.10 rk3568 SOC patches 94│ │ └── hdf.patch # linux-5.10 rk3568 定制 HDF patches 95│ └── config 96│ ├── linux-4.19 97│ │ └── arch 98│ │ └── arm 99│ │ └── configs 100│ │ ├── hi3516dv300_small_defconfig # 厂商Hisilicon对应的开源开发板Hi3516dv300小型系统的defconfig 101│ │ ├── hi3516dv300_standard_defconfig # 厂商Hisilicon对应的开源开发板Hi3516dv300标准系统的defconfig 102│ │ ├── small_common_defconfig # 小型系统的内核的common defconfig 103│ │ └── standard_common_defconfig # 标准系统的内核的common defconfig 104│ └── linux-5.10 105│ └── arch 106│ └── arm 107│ └── configs 108│ ├── hi3516dv300_small_defconfig # 厂商Hisilicon对应的开源开发板Hi3516dv300小型系统的defconfig 109│ ├── hi3516dv300_standard_defconfig # 厂商Hisilicon对应的开源开发板Hi3516dv300标准系统的defconfig 110│ ├── small_common_defconfig # 小型系统的内核的common defconfig 111│ └── standard_common_defconfig # 标准系统的内核的common defconfig 112└── liteos_a # liteos内核基线代码 113 ├── apps # 用户态的init和shell应用程序 114 ├── arch # 体系架构的目录,如arm等 115 │ └── arm # arm架构代码 116 ├── bsd # freebsd相关的驱动和适配层模块代码引入,例如USB等 117 ├── compat # 内核接口兼容性目录 118 │ └── posix # posix相关接口 119 ├── drivers # 内核驱动 120 │ └── char # 字符设备 121 │ ├── mem # 访问物理IO设备驱动 122 │ ├── quickstart # 系统快速启动接口目录 123 │ ├── random # 随机数设备驱动 124 │ └── video # framebuffer驱动框架 125 ├── fs # 文件系统模块,主要来源于NuttX开源项目 126 │ ├── fat # fat文件系统 127 │ ├── jffs2 # jffs2文件系统 128 │ ├── include # 对外暴露头文件存放目录 129 │ ├── nfs # nfs文件系统 130 │ ├── proc # proc文件系统 131 │ ├── ramfs # ramfs文件系统 132 │ └── vfs # vfs层 133 ├── kernel # 进程、内存、IPC等模块 134 │ ├── base # 基础内核,包括调度、内存等模块 135 │ ├── common # 内核通用组件 136 │ ├── extended # 扩展内核,包括动态加载、vdso、liteipc等模块 137 │ ├── include # 对外暴露头文件存放目录 138 │ └── user # 加载init进程 139 ├── lib # 内核的lib库 140 ├── net # 网络模块,主要来源于lwip开源项目 141 ├── platform # 支持不同的芯片平台代码,如Hi3516DV300等 142 │ ├── hw # 时钟与中断相关逻辑代码 143 │ ├── include # 对外暴露头文件存放目录 144 │ └── uart # 串口相关逻辑代码 145 ├── platform # 支持不同的芯片平台代码,如Hi3516DV300等 146 ├── security # 安全特性相关的代码,包括进程权限管理和虚拟id映射管理 147 ├── syscall # 系统调用 148 └── tools # 构建工具及相关配置和代码 149``` 150 151## 约束<a name="section19647171710417"></a> 152 153LiteOS: 154 155Hi3518EV300默认使用jffs2文件系统,Hi3516DV300默认使用FAT文件系统。若要使用其他文件系统,需要新增适配。 156 157## 使用<a name="section1393789267"></a> 158 159### LiteOS使用说明<a name="section118811457303"></a> 160 161参见LiteOS-A内核[README](https://gitee.com/openharmony/kernel_liteos_a/blob/master/README_zh.md)和LiteOS-M内核[README](https://gitee.com/openharmony/kernel_liteos_m/blob/master/README_zh.md)的“使用说明”章节。 162 163### linux使用说明<a name="section1352114469620"></a> 164 1651. 合入HDF补丁 166 167 在kernel/linux/build仓中,按照kernel.mk中HDF的补丁合入方法,合入不同内核版本对应的HDF内核补丁: 168 169 ``` 170 $(OHOS_BUILD_HOME)/drivers/hdf_core/adapter/khdf/linux/patch_hdf.sh $(OHOS_BUILD_HOME) $(KERNEL_SRC_TMP_PATH) $(KERNEL_PATCH_PATH) $(DEVICE_NAME) 171 ``` 172 1732. 合入芯片平台驱动补丁 174 175 以Hi3516DV300为例: 176 177 在kernel/linux/build仓中,按照kernel.mk中的芯片组件所对应的patch路径规则及命名规则,将对应的芯片组件patch放到对应路径下: 178 179 ``` 180 DEVICE_PATCH_DIR := $(OHOS_BUILD_HOME)/kernel/linux/patches/${KERNEL_VERSION}/$(DEVICE_NAME)_patch 181 DEVICE_PATCH_FILE := $(DEVICE_PATCH_DIR)/$(DEVICE_NAME).patch 182 ``` 183 1843. 修改自己所需要编译的config 185 186 在kernel/linux/build仓中,按照kernel.mk中的芯片组件所对应的patch路径规则及命名规则,将对应的芯片组件config放到对应路径下: 187 188 ``` 189 KERNEL_CONFIG_PATH := $(OHOS_BUILD_HOME)/kernel/linux/config/${KERNEL_VERSION} 190 DEFCONFIG_FILE := $(DEVICE_NAME)_$(BUILD_TYPE)_defconfig 191 ``` 192 193 > **须知:** 194 > 195 >由于OpenHarmony工程的编译构建流程中会拷贝kernel/linux/linux-\*\.\*的代码环境后进行打补丁动作,在使用OpenHarmony的版本级编译命令前,需要kernel/linux/linux-\*\.\*原代码环境。 196 > 197 >根据不同系统工程,编译完成后会在out目录下的kernel目录中生成对应实际编译的内核,基于此目录的内核,进行对应的config修改,将最后生成的\.config文件cp到config仓对应的路径文件里,即可生效。 198 199## 构建说明<a name="section19369206113115"></a> 200 201以hi3516dv300开源开发板+ubuntu x86主机开发环境为例 202 203使用工程的全量编译命令,编译生成uImage内核镜像 204 205``` 206./build.sh --product-name hispark_taurus_standard # 编译hi3516dv300镜像 207 --build-target build_kernel # 编译hi3516dv300的uImage内核镜像 208 --gn-args linux_kernel_version=\"linux-5.10\" # 编译指定内核版本 209``` 210 211## 相关仓<a name="section27639463106"></a> 212 213**内核子系统** 214 215LiteOS: 216 217[drivers\_liteos](https://gitee.com/openharmony/drivers_liteos/blob/master/README_zh.md) 218 219[kernel\_liteos\_a](https://gitee.com/openharmony/kernel_liteos_a/blob/master/README_zh.md) 220 221[kernel\_liteos\_m](https://gitee.com/openharmony/kernel_liteos_m/blob/master/README_zh.md) 222 223[device\_qemu](https://gitee.com/openharmony/device_qemu/blob/master/README_zh.md) 224 225Linux: 226 227[kernel\_linux\_patches](https://gitee.com/openharmony/kernel_linux_patches/blob/master/README_zh.md) 228 229[kernel\_linux\_config](https://gitee.com/openharmony/kernel_linux_config/blob/master/README_zh.md) 230 231[kernel\_linux\_build](https://gitee.com/openharmony/kernel_linux_build/blob/master/README_zh.md) 232 233[kernel\_linux\_4.19](https://gitee.com/openharmony/kernel_linux_4.19/blob/master/README) 234 235[kernel\_linux\_5.10](https://gitee.com/openharmony/kernel_linux_5.10/blob/master/README) 236