Skip to content

Commit 87c520a

Browse files
committed
openwrt 22.03.3
1 parent a7b853c commit 87c520a

File tree

6 files changed

+27
-15
lines changed

6 files changed

+27
-15
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ Automated builds of OpenWrt for FriendlyARM NanoPi R2S & R4S boards
66
If you like this project you can gift me a coffee !
77
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/donate/?business=8XQTGXAHEAKPY&no_recurring=0&currency_code=EUR)
88

9-
## OpenWrt branch 22.03 (stable)
9+
## OpenWrt 22.03.3 (stable)
1010

1111
[Download 22.03 Releases](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/releases?q=OpenWrtAO-22.03&expanded=true) [Changelog](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/blob/main/openwrt-22.03/release-info.md)
12+
Supported Models : R2S / R4S(1Gb & 4Gb) / R2C (Untested)
1213

13-
## OpenWrt branch 21.02 (EOL)
14+
## OpenWrt branch master (experimental)
15+
16+
[Download master Releases](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/releases?q=OpenWrtAO-master&expanded=true) [Changelog](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/blob/main/openwrt-master/release-info.md)
17+
Supported Models : R2S / R4S(1Gb & 4Gb)
18+
19+
## OpenWrt 21.02.5 (EOL)
1420

1521
[Download 21.02 Releases](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/releases?q=OpenWrtAO-21.02&expanded=true) [Changelog](https://github.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/blob/main/openwrt-21.02/release-info.md)
1622

openwrt-22.03/patches/package/adguardhome/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
include $(TOPDIR)/rules.mk
77

88
PKG_NAME:=adguardhome
9-
PKG_VERSION:=0.107.16
9+
PKG_VERSION:=0.107.21
1010
PKG_RELEASE:=1
1111

1212
# WARNING : need rework for other arch
1313
PKG_SOURCE:=AdGuardHome_linux_arm64.tar.gz
1414
PKG_SOURCE_URL:=https://github.com/AdguardTeam/AdGuardHome/releases/download/v$(PKG_VERSION)/
15-
PKG_HASH:=ddca30322d3cd53231eb9760cc13fe624223e08070c8ad5877f827db32fd90e2
15+
PKG_HASH:=6a386fbf1630b6d11a0905cbe16683723ce4f20d24ae121726fe551c411d7ea8
1616

1717
PKG_LICENSE:=GPL-3.0-only
1818
PKG_LICENSE_FILES:=LICENSE.txt

openwrt-22.03/release-info.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
## OpenWrt branch 22.03 (stable)
1+
## OpenWrt 22.03.3 (stable)
22

3-
### Warning
4-
- Fully experimental build, still WIP.
5-
- R2S / R4S patches will be reviwed if still needed
6-
- Goal is to get rid of iptables if possible.
3+
### General Info
4+
- Based of openwrt 22.03.3
75

86
### Configuration
9-
- OpenWRT 22.03 Vanilla / Kernel 5.10
7+
- OpenWRT 22.03.3 Vanilla / Kernel 5.10
108
- ImmortalWRT patches for Rockchip target NanoPi R2S (rk3328) / NanoPi R4S support (rk3399)
119
- NanoPi R4S : r8168 driver for R4S (realtek) instead of kernel r8169 + r8169 firmwares package
1210

@@ -18,6 +16,7 @@
1816
- pbr latest version from https://github.com/stangri/source.openwrt.melmac.net
1917

2018
### Changelog
19+
- [2023-01-04] Freeze to OpenWrt 22.03.3 release instead of branch
2120
- [2022-10-19] Re-Update U-Boot to 2022.07 and use FriendlyWrt patches
2221
- [2022-09-28] Add kmod-sched
2322
- [2022-09-27] Revert u-boot to 2021.07 to fix R4S 1Gb broken support

openwrt-22.03/steps/01_clone_openwrt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd $ROOTDIR
1010
mkdir build
1111
cd build
1212

13-
OPENWRT_FOLDER=openwrt-fresh-2203
13+
OPENWRT_FOLDER=openwrt-fresh-22.03
1414
git clone -b openwrt-22.03 --single-branch https://git.openwrt.org/openwrt/openwrt.git $OPENWRT_FOLDER
1515
cd $OPENWRT_FOLDER
1616
echo "Current OpenWRT commit"

openwrt-22.03/steps/02_prepare_openwrt_folder.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ fi
88

99
cd "$ROOTDIR/build"
1010

11-
cp -R openwrt-fresh-2203 openwrt
11+
cp -R openwrt-fresh-22.03 openwrt
12+
13+
# freeze revision to 22.03.3
14+
cd openwrt
15+
git reset --hard 221fbfa2d854ccb6cd003c065ec308fbc0651b11
16+
17+
echo "Current OpenWRT commit"
18+
git log -1
19+
git describe
1220

1321
# install feeds
1422
# cd openwrt

openwrt-22.03/steps/03_patch_openwrt.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fi
99
BUILDDIR="$ROOTDIR/build"
1010

1111
cd "$BUILDDIR/openwrt"
12-
OPENWRT_SUFFIX=2203
1312
OPENWRT_BRANCH=22.03
1413

1514
# -------------- UBOOT -----------------------------------
@@ -21,7 +20,7 @@ cp -R $ROOTDIR/openwrt-$OPENWRT_BRANCH/patches/package/uboot-rockchip package/bo
2120
# -------------- target linux/rockchip ----------------
2221
# replace target rockchip with original one
2322
rm -rf target/linux/rockchip
24-
cp -R $BUILDDIR/openwrt-fresh-$OPENWRT_SUFFIX/target/linux/rockchip target/linux/
23+
cp -R $BUILDDIR/openwrt-fresh-$OPENWRT_BRANCH/target/linux/rockchip target/linux/
2524

2625
# override manually some files in the rockchip target using rsync to merge folders and override same filenames
2726
rsync -avz $ROOTDIR/openwrt-$OPENWRT_BRANCH/patches/target/ target
@@ -50,7 +49,7 @@ else
5049
fi
5150

5251
# revert to fresh config
53-
cp $BUILDDIR/openwrt-fresh-$OPENWRT_SUFFIX/target/linux/generic/config-5.10 target/linux/generic/config-5.10
52+
cp $BUILDDIR/openwrt-fresh-$OPENWRT_BRANCH/target/linux/generic/config-5.10 target/linux/generic/config-5.10
5453

5554
#cleanup
5655
if [ -e .config ]; then

0 commit comments

Comments
 (0)