• Home
Name Date Size #Lines LOC

..--

newip/12-May-2024-19,70613,557

qos_auth/12-May-2024-2,0771,466

xpm/12-May-2024-2,1741,681

LICENSED12-May-2024205 75

LICENSES-GPL-2.0D12-May-202418.3 KiB360299

LICENSES-Linux-syscall-noteD12-May-20241.2 KiB2621

OAT.xmlD12-May-20245.7 KiB8833

README.OpenSourceD12-May-2024376 1211

README.en.mdD12-May-2024971 3725

README.mdD12-May-20246.1 KiB7665

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```
25
26#### 贡献流程
27
281.  以模块特性为名新建仓下新目录,合入代码并提交。
292.  更新仓根目录下OAT.xml、LICENSE以及README.OpenSource文件。
303.  申请内核SIG会议进行评审,[会议申请详见](https://gitee.com/openharmony/community/blob/master/sig/sig_kernel/sig_kernel_cn.md#%E4%BC%9A%E8%AE%AE)314.  评审通过由内核SIG committer审核合入,未评审通过可解决遗留问题再次上会评审,或评审不适合该仓则放弃合入。会上无法决策的可申请架设SIG会议评审。
32
33### 提交指导参考
34
351. 【根目录LICENSE】:请把模块目录添加到对应的license条目下,如下的“newip”模块。如文件中没有指定的license可自行添加(2)、(3)等:
36```
37(1) The directories below are licensed under GPL-2.0-or-later.
38    ./newip/
39```
402. 【OAT】OAT为OpenHarmony社区的自动化开源审视工具,OAT.xml本仓扫描规则,各模块文件规则不一,模块上库时需更新已有OAT.xml文档。
41    在<policylist>中配置自己模块的扫描规则。
42	在"copyrightPolicyFilter"的<filefilter>中添加需要过滤扫描的版权信息文件或目录。
43	在"defaultPolicyFilter"的<filefilter>中添加需要过滤扫描的license文件或目录。
44	在"binaryFileTypePolicyFilter"的<filefilter>中添加需要过滤扫描的二进制文件。
45	具体OAT文件修改方法请参考[OAT tool README](https://gitee.com/openharmony-sig/tools_oat/blob/master/README_zh.md)463. 【README.OpenSource】如本模块借鉴或引用某一开源软件则需要在该文件中添加一条,该文件描述被借鉴软件的信息,以NewIP(借鉴Linux下IPv4 IPv6协议)为例进行说明如下:
47```
48[
49    {
50        "Name": "linux-5.10",										# 借鉴或引用的软件名
51        "License": "GPL-2.0+",										# 使用的许可
52        "License File": "newip/third_party/linux-5.10/LICENSES",	# 指向许可所在文件或目录
53        "Version Number": "5.10.93",								# 借鉴或引用该软件的版本
54        "Owner": "xxx@xxx.com",										# 借鉴或引用软件引入人邮箱
55        "Upstream URL": "https://xxx",								# 借鉴或引用软件开源地址链接
56        "Description": "linux kernel 5.10"							# 对借鉴或引用的开源软件模块的描述
57    }
58]
59```
604. 【模块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)615. 【模块LICENSE】模块的third_party下放置借鉴或引用软件的License文件或目录,可参考[NewIP LICENSE](https://gitee.com/openharmony-sig/kernel_linux_common_modules/tree/master/newip/third_party/linux-5.10/LICENSES)626. 【参与构建】当前内核树外模块可以通过软链接的方式参与内核构建,可由模块目录下独立脚本执行完成动态软链接创建。脚本可放置到构建系统中调用执行。可参考[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)63
64### 合入检视规则
65
661. 【规则】合入该仓模块在构建及运行时只能正向依赖内核,不得产生反向依赖。
672. 【规则】合入时同步提供可编译方案,不可仅代码上库。模块可以通过构建和config配置选择参与版本构建,以适应不同形态产品内核模块的可选择性需求。
683. 【规则】该仓为内核通用模块仓,合入模块不可依赖于特定芯片平台、产品、硬件等。
694. 【规则】该仓使用GPL系列协议,新增自研模块如有使用新License需要在仓根目录添加新LICENSE文件。如有借鉴或引用开源软件则需要配置third_party目录下LICENSE文件。
705. 【规则】合入模块如有借鉴三方开源代码,需在文件头罗列所有借鉴代码文件的copyright/author信息。
716. 【规则】合入模块需更新OAT文件,并完成合入模块OAT扫描,评审时提供扫描报告。
727. 【规则】合入模块需在该仓下创建独立目录,同时模块目录下同步提交README文件。
738. 【规则】合入模块如有借鉴或引用三方开源模块的需要在README.OpenSource文件中进行添加说明。
749. 【建议】具备编译ko的条件,在ko构建能力上线后可适配整改构建出ko模块。
75
76