X-OpenWrt/README.md

109 lines
4.7 KiB
Markdown
Raw Normal View History

2020-10-23 12:49:25 +00:00
## Actions for Building OpenWRT
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-02-21 12:50:54 +00:00
~~自动编译:本项目将在每天 19:00 启动自动编译~~
2020-09-11 02:07:38 +00:00
2021-02-19 08:41:53 +00:00
测试通过的设备: `d-team_newifi-d2`、`phicomm_k2p`、`x86_64(img、img.gz)`、以及使用 bin 格式固件的设备
2020-09-29 06:17:03 +00:00
2020-10-25 01:04:59 +00:00
## Github Actions 部署指南(STEP 1):
2020-09-29 06:17:03 +00:00
2021-01-31 13:25:14 +00:00
1. 首先需要获取 **Github Token**: [点击这里](https://github.com/settings/tokens/new) 进入获取页面,
`Note`项填写你中意的名称,`Select scopes`不懂就**全部打勾**,操作完成后点击下方`Generate token`
2021-02-14 17:43:44 +00:00
2. 复制页面中生成的 **Token**,并保存到本地
2020-09-29 06:17:03 +00:00
2021-02-14 17:43:44 +00:00
**一定要保存到本地,Github 为了安全起见, Token 值只会显示一次!**
2020-10-24 00:59:14 +00:00
2021-01-31 13:25:14 +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-01-31 13:25:14 +00:00
其中`Name`项填写`RELEASE_TOKEN`,然后将你的 **Token** 粘贴到`Value`项,完成后点击`Add secert`
2020-09-29 06:17:03 +00:00
2021-02-14 17:43:44 +00:00
**注意: Github Actions 部署只需操作一次!**
2020-09-29 06:17:03 +00:00
2020-10-25 01:04:59 +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-02-21 12:50:54 +00:00
2. 把本地的 '.config' 文件重命名并上传到`/Configs`或者直接修改原有文件
2020-09-29 06:17:03 +00:00
2021-02-19 08:41:53 +00:00
3. 编辑`.github/workflows/*.yml`文件,修改`第 27 行`为你上传的 '.config' 文件名称
2020-09-29 06:17:03 +00:00
2021-02-14 17:43:44 +00:00
4. 按照你的需求编辑`Scripts/AutoBuild_DiyScript.sh`文件(可以跳过此步骤)
2021-02-14 17:43:44 +00:00
**Diy_Core() 函数中的名词解释:**
2021-01-31 12:17:40 +00:00
```
Author 作者名称,这个名称将在 OpenWrt 首页显示
2021-01-31 13:25:14 +00:00
Default_Device 路由器的完整名称,例如 [d-team_newifi-d2、phicomm_k2p],用于无法从 .config 正常获取设备时备用
2021-01-31 12:17:40 +00:00
INCLUDE_AutoUpdate 启用后,将自动添加 AutoUpdate.sh 和 luci-app-autoupdate 到固件
2021-02-10 10:08:08 +00:00
INCLUDE_AutoBuild_Tools 添加 AutoBuild_Tools.sh 到固件
2021-01-31 12:17:40 +00:00
2021-02-10 10:08:08 +00:00
INCLUDE_SSR_Plus 添加 大雕 的 SSR Plus+ 仓库到源码目录
2021-01-31 12:17:40 +00:00
2021-02-10 10:08:08 +00:00
INCLUDE_Passwall 添加 Lienol 的 openwrt-passwall 仓库到源码目录
2021-02-14 17:43:44 +00:00
INCLUDE_HelloWorld 添加 jerrykuku 的 luci-app-vssr 仓库到源码目录 [Not tested]
2021-02-10 10:08:08 +00:00
2021-02-14 17:43:44 +00:00
INCLUDE_Bypass 添加 garypang13 的 luci-app-bypass 仓库到源码目录,可能与 SSR Plus+ 存在冲突 [Not tested]
2021-01-31 12:17:40 +00:00
INCLUDE_Latest_Xray 启用后,将自动更新 v2ray v2ray-plugin xray 到最新版本
2021-02-10 10:08:08 +00:00
INCLUDE_mt7621_OC1000MHz 启用后,Ramips_mt7621 系列的路由器将自动超频到 1000MHz
2021-01-31 12:17:40 +00:00
INCLUDE_Enable_FirewallPort_53 启用后,自动注释防火墙-自定义规则中的两行 53 端口重定向
```
2021-01-19 06:04:33 +00:00
**AutoBuild 特有指令:** 编辑`Scripts/AutoBuild_DiyScript.sh`,参照下方语法:
2020-09-29 06:17:03 +00:00
```
2021-02-16 10:25:00 +00:00
[使用 git clone 拉取文件] ExtraPackages git 存放位置 软件包名 仓库地址 分支
2020-09-29 06:17:03 +00:00
2021-02-16 10:25:00 +00:00
[使用 svn checkout 拉取文件] ExtraPackages svn 存放位置 软件包名 仓库地址/trunk/目录
2021-01-19 06:04:33 +00:00
2021-02-16 10:25:00 +00:00
[替换 /Customize 文件到源码] Replace_File 文件名称 目标路径 重命名(可选)
2021-01-19 06:04:33 +00:00
2021-02-16 10:25:00 +00:00
[新建文件夹] Mkdir 文件夹名称
2021-01-19 06:04:33 +00:00
2021-01-31 12:17:40 +00:00
[更新 Makefile] Update_Makefile 软件包名 软件包路径 (仅支持部分软件包,自行测试)
2021-01-19 06:04:33 +00:00
```
2021-02-16 10:25:00 +00:00
5. **开始编译**: 点击右上方 ***Star***即可启动编译,最好同步我的最新改动以获得更多特性
2020-10-02 15:30:54 +00:00
2021-01-06 13:18:27 +00:00
## 使用一键更新固件脚本:
首先需要打开 Openwrt 主页,点击`系统`-`TTYD 终端`或者在浏览器输入`192.168.1.1:7681`,按需输入下方指令:
2021-02-14 17:43:44 +00:00
检查并更新固件(保留配置): `bash /bin/AutoUpdate.sh`
2021-01-06 13:18:27 +00:00
2021-02-14 17:43:44 +00:00
检查并更新固件(不保留配置): `bash /bin/AutoUpdate.sh -n`
2021-01-06 13:18:27 +00:00
2021-02-14 17:43:44 +00:00
列出部分系统参数(用于反馈问题): `bash /bin/AutoUpdate.sh -l`
2021-02-16 10:25:00 +00:00
切换检查更新/固件下载通道: `bash /bin/AutoUpdate.sh -c [地址]`
2021-02-14 17:43:44 +00:00
**注意: 一键更新固件需要在 Diy-Core() 函数中启用`INCLUDE_AutoUpdate`**
2021-01-31 12:17:40 +00:00
## 使用一键扩展内部空间\挂载 Samba 共享脚本:
2020-10-02 15:30:54 +00:00
2021-01-06 13:18:27 +00:00
同上方操作,打开`TTYD 终端`,输入`bash /bin/AutoBuild_Tools.sh`
2020-10-24 01:06:21 +00:00
2021-02-14 17:43:44 +00:00
**注意: 使用此脚本需要在 Diy-Core() 函数中启用`INCLUDE_AutoBuild_Tools`**
2020-10-24 01:06:21 +00:00
## 鸣谢
2020-11-17 06:39:42 +00:00
- [Lean's Openwrt](https://github.com/coolsnowwolf/lede)
2020-10-24 01:06:21 +00:00
2021-01-31 13:25:14 +00:00
- [P3TERX's 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
- [eSir's workflow](https://github.com/esirplayground/AutoBuild-OpenWrt/blob/master/.github/workflows/Build_OP_x86_64.yml)
2020-10-24 01:06:21 +00:00
2021-02-23 14:29:12 +00:00
- 测试/建议: [CurssedCoffin](https://github.com/CurssedCoffin) [Licsber](https://github.com/Licsber) [sirliu](https://github.com/sirliu?tab=repositories)