X-OpenWrt/README.md

131 lines
5.7 KiB
Markdown
Raw Normal View History

2021-04-09 14:47:24 +00:00
# Actions for Building OpenWrt / AutoUpdate
2020-09-29 06:17:03 +00:00
2020-10-24 00:59:14 +00:00
![GitHub Stars](https://img.shields.io/github/stars/Hyy2001X/AutoBuild-Actions.svg?style=flat-square&label=Stars&logo=github)
![GitHub Forks](https://img.shields.io/github/forks/Hyy2001X/AutoBuild-Actions.svg?style=flat-square&label=Forks&logo=github)
2021-06-27 15:54:55 +00:00
AutoBuild-Actions 稳定版/模板地址: [AutoBuild-Actions-Template](https://github.com/Hyy2001X/AutoBuild-Actions-Template)
2021-06-27 07:02:16 +00:00
测试通过的设备: `x86_64`
2021-04-08 08:56:11 +00:00
2021-07-21 09:56:37 +00:00
支持的 OpenWrt 源码: `coolsnowwolf/lede`、`immortalwrt/immortalwrt`、`openwrt/openwrt`、`lienol/openwrt`
现仅适配上述列出的源码,暂**不支持**自己 Fork 后的源码
2020-09-29 06:17:03 +00:00
2021-04-09 14:47:24 +00:00
## 部署环境(STEP 1):
2020-09-29 06:17:03 +00:00
2021-03-31 01:49:42 +00:00
1. 首先需要获取 **Github Token**: [点击这里](https://github.com/settings/tokens/new) 获取,
2021-01-31 13:25:14 +00:00
2021-04-29 02:22:53 +00:00
`Note`项填写一个名称,`Select scopes`**全部打勾**,完成后点击下方`Generate token`
2021-01-31 13:25:14 +00:00
2021-04-29 02:22:53 +00:00
2. 复制页面中生成的 **Token**,**并保存到本地,Token 只会显示一次!**
2020-09-29 06:17:03 +00:00
2021-04-09 14:47:24 +00:00
3. **Fork** 我的`AutoBuild-Actions`仓库,然后进入你的`AutoBuild-Actions`仓库进行之后的设置
2020-09-29 06:17:03 +00:00
2021-01-31 13:25:14 +00:00
4. 点击上方菜单中的`Settings`,依次点击`Secrets`-`New repository secret`
2020-09-29 06:17:03 +00:00
2021-04-27 11:49:29 +00:00
其中`Name`项随意填写,然后将你的 **Token** 粘贴到`Value`项,完成后点击`Add secert`
2020-09-29 06:17:03 +00:00
2021-04-09 14:47:24 +00:00
## 定制固件(STEP 2):
2020-10-07 13:51:13 +00:00
2021-02-14 17:43:44 +00:00
1. 进入你的`AutoBuild-Actions`仓库,**下方所有操作都将在你的`AutoBuild-Actions`仓库下进行**
2020-09-29 06:17:03 +00:00
2021-07-16 16:38:27 +00:00
建议使用`Github Desktop`进行操作,修改文件或者同步最新改动都很方便 [[Github Desktop](https://desktop.github.com/)] [[Notepad++](https://notepad-plus-plus.org/downloads/)]
2020-09-29 06:17:03 +00:00
2021-07-19 05:23:08 +00:00
**提示**: 文中的`TARGET_PROFILE`为设备名称,可以在`.config`中获取,例如: `d-team_newifi-d2`
2021-07-16 04:54:53 +00:00
本地获取: `egrep -o "CONFIG_TARGET.*DEVICE.*=y" .config | sed -r 's/.*DEVICE_(.*)=y/\1/'`
2021-06-22 09:20:02 +00:00
2021-07-16 16:38:27 +00:00
或者: `grep 'TARGET_PROFILE' .config`,名称中不应含有`DEVICE_`
2021-06-22 09:20:02 +00:00
2021-07-16 16:38:27 +00:00
2. 把本地的`.config`文件**重命名**并上传到仓库的`/Configs`目录
2021-06-22 09:20:02 +00:00
2021-07-16 16:38:27 +00:00
3. 编辑`/.github/workflows/*.yml`文件,修改`第 7 行`为易于自己识别的名称
2021-07-09 14:03:49 +00:00
2021-07-16 16:38:27 +00:00
4. 编辑`/.github/workflows/*.yml`文件,修改`第 32 行`为上传的`.config`文件名称
2020-09-29 06:17:03 +00:00
2021-07-16 16:38:27 +00:00
**使用其他源码** 修改`第 34 行`,例如: `openwrt:openwrt-21.02`、`openwrt:v19.07.7`
2021-04-08 08:56:11 +00:00
2021-07-16 16:38:27 +00:00
5. 按照你的需求编辑`/Scripts/AutoBuild_DiyScript.sh`文件
2021-04-04 13:44:47 +00:00
2021-07-19 05:23:08 +00:00
**额外的软件包列表** 按照现有语法和提示编辑`/Scripts/AutoBuild_ExtraPackages.sh`文件
2021-04-04 13:44:47 +00:00
2021-04-27 11:49:29 +00:00
**AutoBuild_DiyScript.sh: Diy_Core() 函数中的变量解释:**
2021-01-31 12:17:40 +00:00
```
2021-07-21 09:56:37 +00:00
Author 作者名称,若留空将自动获取为 Github 用户名
2021-07-16 04:54:53 +00:00
Default_LAN_IP 固件默认 LAN IP 地址
2021-03-31 01:49:42 +00:00
2021-07-21 09:56:37 +00:00
Short_Firmware_Date 简短的固件日期 true: [20210601]; false: [202106012359]
Load_CustomPackages_List 启用后,将自动运行 /Scripts/AutoBuild_ExtraPackages.sh 脚本
Checkout_Virtual_Images 额外上传编译完成的 x86 虚拟磁盘镜像到 Release
2021-06-18 02:24:19 +00:00
INCLUDE_AutoBuild_Features 自动添加 AutoBuild 特性到固件
2021-01-31 12:17:40 +00:00
2021-07-21 09:56:37 +00:00
INCLUDE_DRM_I915 自动启用 Intel Graphics i915 驱动 (仅 x86 设备)
2021-04-09 15:12:15 +00:00
2021-06-18 02:24:19 +00:00
INCLUDE_Argon 自动添加 luci-theme-argon 主题和控制器
2021-04-04 13:44:47 +00:00
2021-04-24 14:24:43 +00:00
INCLUDE_Obsolete_PKG_Compatible 优化原生 OpenWrt-19.07、21.02 支持 (测试特性)
2021-04-29 02:22:53 +00:00
2021-07-21 09:56:37 +00:00
注: 若要启用某项功能,请将该项的值修改为 true,禁用某项功能则修改为 false 或留空
2021-01-31 12:17:40 +00:00
```
2021-07-16 16:38:27 +00:00
**其他指令:** 参照下方语法:
2020-09-29 06:17:03 +00:00
```
2021-07-16 08:23:06 +00:00
[使用 git clone 拉取文件] AddPackage git 存放位置 仓库名称 仓库作者 分支
2021-03-31 01:49:42 +00:00
2021-07-16 08:23:06 +00:00
[使用 svn co 拉取文件] AddPackage svn 存放位置 软件包名 仓库作者/仓库名称/branches/分支名称/路径(可选)
2021-03-31 01:49:42 +00:00
2021-07-16 08:23:06 +00:00
[复制 /CustomFiles 文件到源码] Copy 文件(夹)名称 目标路径 新名称(可选)
```
2021-04-09 14:47:24 +00:00
## 编译固件(STEP 3):
2021-06-24 08:20:33 +00:00
**一键编译** 先删除`第 26-27 行`的注释并保存,单(双)击重新点亮右上角的 **Star** 即可一键编译
2021-04-09 14:47:24 +00:00
2021-06-24 08:20:33 +00:00
**定时编译** 先删除`第 23-24 行`的注释,然后按需修改相关参数并保存,[使用方法](https://www.runoob.com/w3cnote/linux-crontab-tasks.html)
2021-04-29 02:22:53 +00:00
2021-05-09 13:32:01 +00:00
**手动编译** 点击上方`Actions`,选择你要编译的设备名称,点击右方`Run workflow`,点击绿色按钮即可开始编译
2021-06-22 09:20:02 +00:00
**临时修改 IP 地址** 该功能仅在**手动编译**时生效,点击`Run workflow`后即可输入 IP 地址(优先级**高于** `Default_LAN_IP`)
2021-04-29 02:22:53 +00:00
2021-05-16 11:03:55 +00:00
## 使用 AutoUpdate 一键更新脚本:
2021-01-06 13:18:27 +00:00
2021-04-29 02:22:53 +00:00
首先需要打开`TTYD 终端`或者在浏览器输入`IP 地址:7681`,按需输入下方指令:
2021-07-16 16:38:27 +00:00
更新固件: `autoupdate`或`bash /bin/AutoUpdate.sh`
2021-04-29 02:22:53 +00:00
2021-07-16 16:38:27 +00:00
更新固件(优先使用镜像加速): `autoupdate -P`
2021-01-06 13:18:27 +00:00
2021-07-16 16:38:27 +00:00
更新固件(不保留配置): `autoupdate -n`
强制刷入固件: `autoupdate -F`
跳过 sha256 校验: `autoupdate --skip`
**注意:** 参数可叠加,例如: `autoupdate -n -P -F --skip path=/mnt/sda1`
2021-05-16 11:03:55 +00:00
2021-07-16 16:38:27 +00:00
查看更多参数/使用方法: `autoupdate --help`
2021-04-29 02:22:53 +00:00
2021-06-18 02:29:58 +00:00
**注意: 该功能需要在 Diy-Core() 函数中设置`INCLUDE_AutoBuild_Features`为`true`**
2021-04-27 11:49:29 +00:00
2021-05-16 11:03:55 +00:00
## 使用 AutoBuild 固件工具箱:
2021-04-29 02:22:53 +00:00
2021-06-22 09:20:02 +00:00
打开`TTYD 终端`,输入`tools`或`bash /bin/AutoBuild_Tools.sh`
2021-04-27 11:49:29 +00:00
2021-06-18 02:29:58 +00:00
**注意: 该功能需要在 Diy-Core() 函数中设置`INCLUDE_AutoBuild_Features`为`true`**
2021-04-29 02:22:53 +00:00
2020-10-24 01:06:21 +00:00
## 鸣谢
2021-04-04 13:44:47 +00:00
- [Lean's Openwrt Source code](https://github.com/coolsnowwolf/lede)
- [P3TERX's Actions-OpenWrt Project](https://github.com/P3TERX/Actions-OpenWrt)
2020-10-24 01:06:21 +00:00
2021-01-31 13:25:14 +00:00
- [P3TERX's Blog](https://p3terx.com/archives/build-openwrt-with-github-actions.html)
2021-02-23 14:29:12 +00:00
2021-05-26 13:31:15 +00:00
- [ImmortalWrt's Source code](https://github.com/immortalwrt)
2021-04-04 13:44:47 +00:00
2021-05-26 13:31:15 +00:00
- [eSir 's workflow template](https://github.com/esirplayground/AutoBuild-OpenWrt/blob/master/.github/workflows/Build_OP_x86_64.yml)
2021-04-04 13:44:47 +00:00
2021-04-08 08:56:11 +00:00
- 测试与建议: [CurssedCoffin](https://github.com/CurssedCoffin) [Licsber](https://github.com/Licsber) [sirliu](https://github.com/sirliu) [teasiu](https://github.com/teasiu)