Skip to content

Commit d08f509

Browse files
Set default dropbear interface
1 parent e952102 commit d08f509

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/R2S-OpenWrt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ jobs:
105105
run: |
106106
cd openwrt
107107
let make_process=$(nproc)+1
108-
make toolchain/install -j${make_process} V=s
108+
make toolchain/install -j${make_process} V=m
109109
- name: Compile Openwrt
110110
run: |
111111
cd openwrt
112112
let make_process=$(nproc)+1
113-
make -j${make_process} V=s || make -j1 V=s
113+
make -j${make_process} V=m || make -j1 V=s
114114
- name: Cleaning
115115
run: |
116116
cd openwrt/bin/targets/rockchip/armv8

.github/workflows/X86-OpenWrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
cd openwrt
112112
let make_process=$(nproc)+1
113-
make -j${make_process} V=m || make -j${make_process} V=m || make -j1 V=s
113+
make -j${make_process} V=m || make -j1 V=s
114114
- name: Cleaning
115115
run: |
116116
cd openwrt/bin/targets/x86/64

SCRIPTS/02_prepare_package.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ clear
44
## Prepare
55
# Update feeds
66
./scripts/feeds update -a && ./scripts/feeds install -a
7+
# Default Dropbear Interface
8+
echo -e "\toption Interface 'lan'" >> ./package/network/services/dropbear/files/dropbear.config
79
# Irqbalance
810
sed -i "s/enabled '0'/enabled '1'/g" feeds/packages/utils/irqbalance/files/irqbalance.config
911
# Victoria's Secret
@@ -58,7 +60,6 @@ ln -sf ../../../feeds/luci/applications/luci-app-ramfree ./package/feeds/luci/lu
5860
svn co https://github.com/fw876/helloworld/trunk/luci-app-ssr-plus package/lean/luci-app-ssr-plus
5961
rm -rf ./package/lean/luci-app-ssr-plus/po/zh_Hans
6062
# SSRP Dependies
61-
rm -rf ./feeds/packages/net/proxychains-ng
6263
rm -rf ./feeds/packages/net/shadowsocks-libev
6364
rm -rf ./feeds/packages/net/xray-core
6465
svn co https://github.com/coolsnowwolf/lede/trunk/package/lean/dns2socks package/lean/dns2socks
@@ -82,7 +83,7 @@ svn co https://github.com/fw876/helloworld/trunk/xray-core package/lean/xray-cor
8283
#svn co https://github.com/fw876/helloworld/trunk/v2ray-core package/lean/v2ray-core
8384
# Merge Pull Requests from developers
8485
pushd package/lean
85-
wget -qO - https://patch-diff.githubusercontent.com/raw/fw876/helloworld/pull/557.patch | patch -p1
86+
#wget -qO - https://patch-diff.githubusercontent.com/raw/fw876/helloworld/pull/559.patch | patch -p1
8687
wget -qO - https://github.com/QiuSimons/helloworld-fw876/commit/c1674ad.patch | patch -p1
8788
popd
8889
# Add Extra Proxy Ports and Change Lists

0 commit comments

Comments
 (0)