Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.

Commit 06ca030

Browse files
committed
Update README
1 parent c5dcb61 commit 06ca030

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

README.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
# Nanopi R2S 固件自动编译
22

3-
编译了两种固件,分别是基于 Lean 的和基于官方固件的。
4-
5-
点击[这里](https://github.com/songchenwen/nanopi-r2s/releases)下载固件,推荐下载 FriendlyWRT 开头的版本。
3+
[![friendlywrt](https://github.com/songchenwen/nanopi-r2s/workflows/friendlywrt/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3Afriendlywrt)
4+
[![FwF](https://github.com/songchenwen/nanopi-r2s/workflows/FwF/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3AFwF)
5+
[![lean](https://github.com/songchenwen/nanopi-r2s/workflows/lean/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3Alean)
6+
[![LOL](https://github.com/songchenwen/nanopi-r2s/workflows/LOL/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3ALOL)
67

7-
NanoPi R2S 图形化刷机工具 luci-app-r2sflasher 的 ipk 安装包,也可以从[这里](https://github.com/songchenwen/nanopi-r2s/releases)下载到,选择4月14日及之后的版本把 zip 包解压之后即可得到 ipk
8+
编译了两种固件,分别是基于 Lean 的和基于官方固件的
89

910
FriendlyWRT 和 FwF 是基于官方固件的版本,主要求稳,没有解锁 CPU 主频,也没添加 Flow Offload,实测性能够用,温度还低,推荐作为家庭主路由拿来长期使用。
1011

11-
|| 固件名字 | 状态 | 改动记录 | 简介 |
12-
| :--- | :------ | :--- | :----- | :--- |
13-
| * | FriendlyWRT | [![friendlywrt](https://github.com/songchenwen/nanopi-r2s/workflows/friendlywrt/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3Afriendlywrt) | [改动记录](FriendlyWRT/CHANGELOG.md) | 以官方固件为基础, 添加 Lean 的包 |
14-
| * | FwF | [![FwF](https://github.com/songchenwen/nanopi-r2s/workflows/FwF/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3AFwF) | [改动记录](FwF/CHANGELOG.md) | FriendlyWRT with Features, 比上面的固件含有更多包 |
15-
| | Lean | [![lean](https://github.com/songchenwen/nanopi-r2s/workflows/lean/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3Alean) | [改动记录](Lean/CHANGELOG.md) | 以 Lean 为基础, 增加 FriendlyWRT 对 OpenWRT 的改动 |
16-
| | LOL | [![LOL](https://github.com/songchenwen/nanopi-r2s/workflows/LOL/badge.svg)](https://github.com/songchenwen/nanopi-r2s/actions?query=workflow%3ALOL) | [改动记录](LOL/CHANGELOG.md) |[Lienol on Lean](https://github.com/Lienol/openwrt/tree/dev-lean-lede)为基础, 增加 FriendlyWRT 对 OpenWRT 的改动 |
12+
点击下方固件名字,可找到对应版本固件的最新下载链接。图形化刷机工具 [luci-app-r2sflasher](luci-app-r2sflasher) 的 ipk 安装包也在下载到的 zip 里。推荐下载 FriendlyWRT 的版本。
13+
14+
| 推荐 | 固件名字 | 改动记录 | 简介 |
15+
| :--- | :------ | :----- | :--- |
16+
| * | [FriendlyWRT](https://github.com/songchenwen/nanopi-r2s/releases/tag/FriendlyWRT-2020-04-15-f666d0b) | [改动记录](FriendlyWRT/CHANGELOG.md) | 以官方固件为基础, 添加 Lean 的包 |
17+
| * | [FwF](https://github.com/songchenwen/nanopi-r2s/releases/tag/FwF-2020-04-14-c5c7214) | [改动记录](FwF/CHANGELOG.md) | FriendlyWRT with Features, 比上面的固件含有更多功能 |
18+
| | [Lean](https://github.com/songchenwen/nanopi-r2s/releases/tag/Lean-2020-04-14-b7c1390) | [改动记录](Lean/CHANGELOG.md) | 以 Lean 为基础, 增加 FriendlyWRT 对 OpenWRT 的改动 |
19+
| | [LOL](https://github.com/songchenwen/nanopi-r2s/releases/tag/LOL-2020-04-14-b7c1390) | [改动记录](LOL/CHANGELOG.md) |[Lienol on Lean](https://github.com/Lienol/openwrt/tree/dev-lean-lede)为基础, 增加 FriendlyWRT 对 OpenWRT 的改动 |
1720

1821
默认 LAN 口 IP `192.168.2.1` 默认密码 `password`
1922

20-
4月14日之后的版本加入了 luci-app-r2sflasher, 可以图形化刷机了。
23+
4月14日之后的版本加入了 [luci-app-r2sflasher](luci-app-r2sflasher), 可以图形化刷机了。
2124

2225
Fork 自 [klever1988](https://github.com/klever1988/nanopi-openwrt)[soffchen](https://github.com/soffchen/NanoPi-R2S)
2326

changelog.sh

+4
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@ touch $ChangeLogFile
107107
printf '%s\n%s\n' "$ChangeLogFull" "$(cat $ChangeLogFile)" >$ChangeLogFile
108108
rm $StatusFile
109109
mv $NewStatusFile $StatusFile
110+
111+
sed -i -E "s/(releases\/tag\/)${VARIANTNAME}-[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9a-f]+/\1${BuildTag}/" README.md
112+
110113
git add $StatusFile
111114
git add $ChangeLogFile
115+
git add README.md
112116
git commit -m "ChangeLog for $BuildTag"
113117
# git push

luci-app-r2sflasher/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# NanoPi R2S 图形化刷机工具
2+
3+
![r2sflasher](images/luci-app-r2sflasher.png)
4+
5+
支持上传常用压缩格式的固件包图形化刷机。
Loading

0 commit comments

Comments
 (0)