From 830a0561a720f8ba7fd47fdcc9511f4dc91fa927 Mon Sep 17 00:00:00 2001 From: ophub Date: Sat, 24 Dec 2022 04:22:21 +0000 Subject: [PATCH] Improve documentation --- README.cn.md | 1 + README.md | 1 + compile-kernel/README.cn.md | 14 +++++++------- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.cn.md b/README.cn.md index 4396c57711..7e4316762b 100644 --- a/README.cn.md +++ b/README.cn.md @@ -251,6 +251,7 @@ sudo apt-get install -y $(cat compile-kernel/tools/script/ubuntu2204-build-armbi armbian_path: build/output/images/*.img armbian_board: s905d_s905x3_s922x_s905x armbian_kernel: 5.10.125_5.15.50 + gh_token: ${{ secrets.GH_TOKEN }} ``` - ### GitHub Actions 输入参数说明 diff --git a/README.md b/README.md index 34ded1ac2a..86c30f2f39 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ sudo apt-get install -y $(cat compile-kernel/tools/script/ubuntu2204-build-armbi armbian_path: build/output/images/*.img armbian_board: s905d_s905x3_s922x_s905x armbian_kernel: 5.10.125_5.15.50 + gh_token: ${{ secrets.GH_TOKEN }} ``` - ### GitHub Actions Input parameter description diff --git a/compile-kernel/README.cn.md b/compile-kernel/README.cn.md index ab2b5f22e4..95aff4f156 100644 --- a/compile-kernel/README.cn.md +++ b/compile-kernel/README.cn.md @@ -31,13 +31,13 @@ sudo apt-get install -y $(cat compile-kernel/tools/script/ubuntu2204-build-armbi - ### 本地编译参数说明 -| 参数 | 含义 | 说明 | -| ---- | --------- | --------------------------- | -| -k | Kernel | 指定 kernel 名称,如 `-k 5.10.125` . 多个内核使用 `_` 进行连接,如 `-k 5.10.125_5.15.50` | -| -a | AutoKernel | 设置是否自动采用同系列最新版本内核。当为 `true` 时,将自动查找在 `-k` 中指定的内核如 `5.10.125` 的同系列是否有更新的版本,如有 `5.10.125` 之后的最新版本时,将自动更换为最新版。设置为 `false` 时将编译指定版本内核。默认值:`true` | -| -p | PackageList | 设置编译内核的包列表。默认值为 `all` ,将编译 `Image, modules, dtbs` 的全部文件。当设置值为 `dtbs` 时仅编译 3 个 dtbs 文件。 | -| -n | CustomName | 设置内核自定义签名。默认值为 `-ophub` ,生成的内核名称为 `5.10.125-ophub` 。设置自定义签名时请勿包含空格。 | -| -r | Repository | 指定编译内核的源代码仓库。默认为 `unifreq` 。可选择 `kernel.org` 的源码和 `github.com` 的内核源代码仓库。例如 `-r kernel.org` 或 `-r unifreq` 等。当使用 `github.com` 的内核源代码仓库时,可设置参数格式为 `owner/repo@branch` 三项组合,参数中的所有者名称 `owner` 为必选参数,内核源代码仓库名称 `/repo` 和 仓库的分支名称 `@branch` 为可选参数。当仅指定所有者名称 `owner` 参数时,将自动匹配所有者的名称为 `linux-5.x.y` 格式且分支为 `main` 的内核源代码仓库。如果仓库名称或分支名称不同,请使用组合方式指定,如 `owner@branch` 或 `owner/repo` 或 `owner/repo@branch` | +| 参数 | 含义 | 说明 | +| ------ | ----------- | ------------------------------- | +| -k | Kernel | 指定 kernel 名称,如 `-k 5.10.125` . 多个内核使用 `_` 进行连接,如 `-k 5.10.125_5.15.50` | +| -a | AutoKernel | 设置是否自动采用同系列最新版本内核。当为 `true` 时,将自动查找在 `-k` 中指定的内核如 `5.10.125` 的同系列是否有更新的版本,如有 `5.10.125` 之后的最新版本时,将自动更换为最新版。设置为 `false` 时将编译指定版本内核。默认值:`true` | +| -p | PackageList | 设置编译内核的包列表。默认值为 `all` ,将编译 `Image, modules, dtbs` 的全部文件。当设置值为 `dtbs` 时仅编译 3 个 dtbs 文件。 | +| -n | CustomName | 设置内核自定义签名。默认值为 `-ophub` ,生成的内核名称为 `5.10.125-ophub` 。设置自定义签名时请勿包含空格。 | +| -r | Repository | 指定编译内核的源代码仓库。默认为 `unifreq` 。可选择 `kernel.org` 的源码和 `github.com` 的内核源代码仓库。例如 `-r kernel.org` 或 `-r unifreq` 等。当使用 `github.com` 的内核源代码仓库时,可设置参数格式为 `owner/repo@branch` 三项组合,参数中的所有者名称 `owner` 为必选参数,内核源代码仓库名称 `/repo` 和 仓库的分支名称 `@branch` 为可选参数。当仅指定所有者名称 `owner` 参数时,将自动匹配所有者的名称为 `linux-5.x.y` 格式且分支为 `main` 的内核源代码仓库。如果仓库名称或分支名称不同,请使用组合方式指定,如 `owner@branch` 或 `owner/repo` 或 `owner/repo@branch` | - `sudo ./recompile` : 使用默认配置编译内核。 - `sudo ./recompile -k 5.10.125` : 使用默认配置,并通过 `-k` 进行指定需要编译的内核版本,多个版本同时编译时使用 `_` 进行连接。