• Home
Name Date Size #Lines LOC

..--

code_sign/07-Sep-2024-1,354989

container_escape_detection/07-Sep-2024-593444

memory_security/07-Sep-2024-719513

module_sample/07-Sep-2024-7442

newip/07-Sep-2024-20,36614,054

pac/07-Sep-2024-1,103788

qos_auth/07-Sep-2024-2,1531,533

tzdriver/07-Sep-2024-24,53819,317

ucollection/07-Sep-2024-568469

xpm/07-Sep-2024-2,7142,037

BUILD.gnD07-Sep-2024651 1715

LICENSED07-Sep-2024343 1412

LICENSES-GPL-2.0D07-Sep-202418.3 KiB360299

LICENSES-Linux-syscall-noteD07-Sep-20241.2 KiB2621

OAT.xmlD07-Sep-20248 KiB11052

README.OpenSourceD07-Sep-2024376 1211

README.en.mdD07-Sep-2024971 3725

README.mdD07-Sep-20247.9 KiB133110

README.OpenSource

1[
2    {
3        "Name": "linux-5.10",
4        "License": "GPL-2.0+",
5        "License File": "newip/third_party/linux-5.10/LICENSES",
6        "Version Number": "5.10.93",
7        "Owner": "tanyanying@huawei.com",
8        "Upstream URL": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=linux-5.10.y",
9        "Description": "linux kernel 5.10"
10    }
11]
12

README.en.md

1# kernel_linux_common_modules
2
3#### Description
4{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
5
6#### Software Architecture
7Software architecture description
8
9#### Installation
10
111.  xxxx
122.  xxxx
133.  xxxx
14
15#### Instructions
16
171.  xxxx
182.  xxxx
193.  xxxx
20
21#### Contribution
22
231.  Fork the repository
242.  Create Feat_xxx branch
253.  Commit your code
264.  Create Pull Request
27
28
29#### Gitee Feature
30
311.  You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
322.  Gitee blog [blog.gitee.com](https://blog.gitee.com)
333.  Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
344.  The most valuable open source project [GVP](https://gitee.com/gvp)
355.  The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
366.  The most popular members  [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
37

README.md

1# kernel_linux_common_modules
2
3#### 介绍
4仓用途:为Linux内核通用模块放置仓,为各内核领域公共仓。该仓不提供任何特性或能力,仅为集中容纳各内核独立模块,方便内核仓管理。
5适用模块:通用内核模块,可在OpenHarmony支持的任何Linux内核版本上使用。对特定平台或硬件等依赖的模块不适合合入该仓。
6
7#### 目录结构
8
9```
10kernel/linux/
11       └ ─ ─  common_modules/
12               ├ ─ ─  xxx/                        # xxx内核独立模块目录
13               │       ├ ─ ─  include/            # 模块头文件目录,可自定义
14               │       ├ ─ ─  src/                # 模块源文件目录,可自定义
15               │       ├ ─ ─  third_party/        # 三方引入文件目录
16               │       │       └ ─ ─  LICENSES/   # 三方使用的license文件目录
17               │       ├ ─ ─  README.md           # 模块自简介文件
18               │       └ ─ ─  README_en.md
19               ├ ─ ─  LICENSE                     # 许可配置文件,合入模块同步更新
20               ├ ─ ─  OAT.xml                     # OAT扫描配置文件,合入模块同步更新
21               ├ ─ ─  README.md                   # linux内核通用模块仓介绍文档
22               ├ ─ ─  README_en.md
23               ├ ─ ─  README.OpenSource           # 模块资源配置文件
24               ├ ─ ─  BUILD.gn                    # 内核ko模块参与构建的编译配置文件
25               └ ─ ─  module_smple                # 内核ko示例
26                       ├ ─ ─  BUILD.gn            # 内核ko模块编译配置文件
27                       └ ─ ─  *.c                 # ko源码文件(支持子目录以及多源码文件)
28
29```
30
31#### 贡献流程
32
331.  以模块特性为名新建仓下新目录,合入代码并提交。
342.  更新仓根目录下OAT.xml、LICENSE以及README.OpenSource文件。
353.  申请内核SIG会议进行评审,[会议申请详见](https://gitee.com/openharmony/community/blob/master/sig/sig_kernel/sig_kernel_cn.md#%E4%BC%9A%E8%AE%AE)364.  评审通过由内核SIG committer审核合入,未评审通过可解决遗留问题再次上会评审,或评审不适合该仓则放弃合入。会上无法决策的可申请架设SIG会议评审。
37
38### 提交指导参考
39
401. 【根目录LICENSE】:请把模块目录添加到对应的license条目下,如下的“newip”模块。如文件中没有指定的license可自行添加(2)、(3)等:
41```
42(1) The directories below are licensed under GPL-2.0-or-later.
43    ./newip/
44```
452. 【OAT】OAT为OpenHarmony社区的自动化开源审视工具,OAT.xml本仓扫描规则,各模块文件规则不一,模块上库时需更新已有OAT.xml文档。
46    在<policylist>中配置自己模块的扫描规则。
47	在"copyrightPolicyFilter"的<filefilter>中添加需要过滤扫描的版权信息文件或目录。
48	在"defaultPolicyFilter"的<filefilter>中添加需要过滤扫描的license文件或目录。
49	在"binaryFileTypePolicyFilter"的<filefilter>中添加需要过滤扫描的二进制文件。
50	具体OAT文件修改方法请参考[OAT tool README](https://gitee.com/openharmony-sig/tools_oat/blob/master/README_zh.md)513. 【README.OpenSource】如本模块借鉴或引用某一开源软件则需要在该文件中添加一条,该文件描述被借鉴软件的信息,以NewIP(借鉴Linux下IPv4 IPv6协议)为例进行说明如下:
52```
53[
54    {
55        "Name": "linux-5.10",										# 借鉴或引用的软件名
56        "License": "GPL-2.0+",										# 使用的许可
57        "License File": "newip/third_party/linux-5.10/LICENSES",	# 指向许可所在文件或目录
58        "Version Number": "5.10.93",								# 借鉴或引用该软件的版本
59        "Owner": "xxx@xxx.com",										# 借鉴或引用软件引入人邮箱
60        "Upstream URL": "https://xxx",								# 借鉴或引用软件开源地址链接
61        "Description": "linux kernel 5.10"							# 对借鉴或引用的开源软件模块的描述
62    }
63]
64```
654. 【模块README】模块目录下提供介绍文件。文件需包含模块功能说明、架构目录说明、使用说明、构建说明、相关依赖仓说明等。[文档模板](https://gitee.com/openharmony/docs/blob/master/zh-cn/contribute/template/README-template.md) ,[可参考NewIP README文件](https://gitee.com/openharmony-sig/kernel_linux_common_modules/blob/master/newip/README_zh.md)665. 【模块LICENSE】模块的third_party下放置借鉴或引用软件的License文件或目录,可参考[NewIP LICENSE](https://gitee.com/openharmony-sig/kernel_linux_common_modules/tree/master/newip/third_party/linux-5.10/LICENSES)676. 【参与构建】当前内核树外模块可以通过软链接的方式参与内核构建,可由模块目录下独立脚本执行完成动态软链接创建。脚本可放置到构建系统中调用执行。可参考[NewIP软链接创建脚本](https://gitee.com/openharmony-sig/kernel_linux_common_modules/blob/master/newip/apply_newip.sh) ,[NewIP脚本调用样例](https://gitee.com/openharmony/device_board_hihope/blob/master/rk3568/kernel/build_kernel.sh)68
69### 合入检视规则
70
711. 【规则】合入该仓模块在构建及运行时只能正向依赖内核,不得产生反向依赖。
722. 【规则】合入时同步提供可编译方案,不可仅代码上库。模块可以通过构建和config配置选择参与版本构建,以适应不同形态产品内核模块的可选择性需求。
733. 【规则】该仓为内核通用模块仓,合入模块不可依赖于特定芯片平台、产品、硬件等。
744. 【规则】该仓使用GPL系列协议,新增自研模块如有使用新License需要在仓根目录添加新LICENSE文件。如有借鉴或引用开源软件则需要配置third_party目录下LICENSE文件。
755. 【规则】合入模块如有借鉴三方开源代码,需在文件头罗列所有借鉴代码文件的copyright/author信息。
766. 【规则】合入模块需更新OAT文件,并完成合入模块OAT扫描,评审时提供扫描报告。
777. 【规则】合入模块需在该仓下创建独立目录,同时模块目录下同步提交README文件。
788. 【规则】合入模块如有借鉴或引用三方开源模块的需要在README.OpenSource文件中进行添加说明。
799. 【建议】具备编译ko的条件,在ko构建能力上线后可适配整改构建出ko模块。
80
81### ko模块指导
82
831. BUILD.gn文件
84
85(1) 参与构建
86
87参与编译ko模块在common_modules下的BUILD.gn中deps字段中进行添加,格式为“模块目录:模块名”,例如:
88```
89group("ko_build") {
90  deps = [
91    "module_sample:ko_sample", # 示例ko
92    "my_sample:new_ko",        # 新建ko
93  ]
94}
95```
96
97
98(2) 模块编译配置文件,示例如下
99```
100import("//build/templates/kernel/ohos_kernel_build.gni")  # 包含编译ko所需的模板配置
101
102ohos_build_ko("ko_sample") {      # 内核ko模块编译名,用于参与构建依赖,必须配置
103  sources = [                     # 涉及源码文件填写,必须配置
104    "ko_sample.c",
105    "sample_fun.c",
106  ]
107  target_ko_name = "kosample"     # 内核ko最终模块名,不用带扩展名“.ko”,必须配置
108  device_name = device_name       # 参与的设备名,如rk3568,默认使用编译参数device_name配置即可
109  device_arch = "arm64"           # 适用架构配置,必须配置
110}
111```
112
113
1142. 编译
115
116新增编译目标mk_chip_ckm_img,所有填入BUILD.gn的ko模块将会被编译生成。以rk3568为例:
117```
118./build.sh --product-name rk3568 --build-target mk_chip_ckm_img  --ccache --jobs 4
119```
120
121
1223. 产物
123
124所有构建后ko生成在新增的chip_ckm目录下,以rk3568为例:
125```
126out/rk3568/packages/phone/chip_ckm/
127                           └ ─ ─  *.ko
128```
129ko全部打包到独立镜像chip_ckm.img镜像中,镜像位置以rk3568为例:
130```
131out/rk3568/packages/phone/images/
132                           └ ─ ─  chip_ckm.img
133```