File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ CONFIG_PACKAGE_diffutils=y
110110# CONFIG_PACKAGE_dnsmasq is not set
111111CONFIG_PACKAGE_dnsmasq-full=y
112112CONFIG_PACKAGE_dnsmasq_full_auth=y
113- CONFIG_PACKAGE_dnsmasq_full_broken_rtc=y
114113CONFIG_PACKAGE_dnsmasq_full_conntrack=y
115114CONFIG_PACKAGE_dnsmasq_full_dhcp=y
116115CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y
Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ CONFIG_PACKAGE_diffutils=y
132132# CONFIG_PACKAGE_dnsmasq is not set
133133CONFIG_PACKAGE_dnsmasq-full=y
134134CONFIG_PACKAGE_dnsmasq_full_auth=y
135- CONFIG_PACKAGE_dnsmasq_full_broken_rtc=y
136135CONFIG_PACKAGE_dnsmasq_full_conntrack=y
137136CONFIG_PACKAGE_dnsmasq_full_dhcp=y
138137CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y
Original file line number Diff line number Diff line change 88
99cd " $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
1216cd 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
You can’t perform that action at this time.
0 commit comments