Skip to content

Commit 922ff31

Browse files
committed
Fix issues #3 #4
1 parent 446614f commit 922ff31

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ Those are my customized builds of OpenWrt for FriendlyARM NanoPi R2S / R4S
1919

2020
## Changelog
2121

22+
#### 2021-07-07
23+
- Fix issue #3 with strangri_repo : thanks TheLinuxGuy for reporting
24+
- Fix issue #4 with dnsmasq misconfigured : thanks semicuda for reporting
2225
#### 2021-05-27
2326
- Add ddns-scripts and bind-tools
2427
#### 2021-05-25

seed/ao-mini.seed

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ CONFIG_PACKAGE_diffutils=y
110110
# CONFIG_PACKAGE_dnsmasq is not set
111111
CONFIG_PACKAGE_dnsmasq-full=y
112112
CONFIG_PACKAGE_dnsmasq_full_auth=y
113-
CONFIG_PACKAGE_dnsmasq_full_broken_rtc=y
114113
CONFIG_PACKAGE_dnsmasq_full_conntrack=y
115114
CONFIG_PACKAGE_dnsmasq_full_dhcp=y
116115
CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y

seed/ao.seed

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ CONFIG_PACKAGE_diffutils=y
132132
# CONFIG_PACKAGE_dnsmasq is not set
133133
CONFIG_PACKAGE_dnsmasq-full=y
134134
CONFIG_PACKAGE_dnsmasq_full_auth=y
135-
CONFIG_PACKAGE_dnsmasq_full_broken_rtc=y
136135
CONFIG_PACKAGE_dnsmasq_full_conntrack=y
137136
CONFIG_PACKAGE_dnsmasq_full_dhcp=y
138137
CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y

steps/04-prepare_package.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,23 @@ fi
88

99
cd "$ROOTDIR/build"
1010

11+
# clone stangri repo
12+
rm -rf stangri_repo
13+
git clone https://github.com/stangri/source.openwrt.melmac.net stangri_repo
14+
1115
# install feeds
1216
cd openwrt
1317

14-
# add stangri repo source from github
15-
sed -i '/stangri_repo/d' feeds.conf.default
16-
! grep -q 'stangri_repo' feeds.conf.default && sed -i '5 i\src-git stangri_repo https://github.com/stangri/source.openwrt.melmac.net' feeds.conf.default
17-
1818
./scripts/feeds update -a
1919
./scripts/feeds install -a -p packages
2020
./scripts/feeds install -a -p luci
2121
./scripts/feeds install -a -p routing
2222
./scripts/feeds install -a -p telephony
2323

24+
2425
# replace vpn routing packages
25-
./scripts/feeds uninstall vpn-policy-routing
26-
./scripts/feeds install -p stangri_repo vpn-policy-routing
26+
rm -rf feeds/packages/net/vpn-policy-routing/
27+
cp -R ../stangri_repo/vpn-policy-routing feeds/packages/net/
2728

2829
# this does not work
2930
#./scripts/feeds uninstall luci-app-vpn-policy-routing

0 commit comments

Comments
 (0)