Skip to content

Commit

Permalink
Set default dropbear interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-opensource committed Jun 16, 2021
1 parent e952102 commit d08f509
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/R2S-OpenWrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ jobs:
run: |
cd openwrt
let make_process=$(nproc)+1
make toolchain/install -j${make_process} V=s
make toolchain/install -j${make_process} V=m
- name: Compile Openwrt
run: |
cd openwrt
let make_process=$(nproc)+1
make -j${make_process} V=s || make -j1 V=s
make -j${make_process} V=m || make -j1 V=s
- name: Cleaning
run: |
cd openwrt/bin/targets/rockchip/armv8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/X86-OpenWrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: |
cd openwrt
let make_process=$(nproc)+1
make -j${make_process} V=m || make -j${make_process} V=m || make -j1 V=s
make -j${make_process} V=m || make -j1 V=s
- name: Cleaning
run: |
cd openwrt/bin/targets/x86/64
Expand Down
5 changes: 3 additions & 2 deletions SCRIPTS/02_prepare_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ clear
## Prepare
# Update feeds
./scripts/feeds update -a && ./scripts/feeds install -a
# Default Dropbear Interface
echo -e "\toption Interface 'lan'" >> ./package/network/services/dropbear/files/dropbear.config
# Irqbalance
sed -i "s/enabled '0'/enabled '1'/g" feeds/packages/utils/irqbalance/files/irqbalance.config
# Victoria's Secret
Expand Down Expand Up @@ -58,7 +60,6 @@ ln -sf ../../../feeds/luci/applications/luci-app-ramfree ./package/feeds/luci/lu
svn co https://github.com/fw876/helloworld/trunk/luci-app-ssr-plus package/lean/luci-app-ssr-plus
rm -rf ./package/lean/luci-app-ssr-plus/po/zh_Hans
# SSRP Dependies
rm -rf ./feeds/packages/net/proxychains-ng
rm -rf ./feeds/packages/net/shadowsocks-libev
rm -rf ./feeds/packages/net/xray-core
svn co https://github.com/coolsnowwolf/lede/trunk/package/lean/dns2socks package/lean/dns2socks
Expand All @@ -82,7 +83,7 @@ svn co https://github.com/fw876/helloworld/trunk/xray-core package/lean/xray-cor
#svn co https://github.com/fw876/helloworld/trunk/v2ray-core package/lean/v2ray-core
# Merge Pull Requests from developers
pushd package/lean
wget -qO - https://patch-diff.githubusercontent.com/raw/fw876/helloworld/pull/557.patch | patch -p1
#wget -qO - https://patch-diff.githubusercontent.com/raw/fw876/helloworld/pull/559.patch | patch -p1
wget -qO - https://github.com/QiuSimons/helloworld-fw876/commit/c1674ad.patch | patch -p1
popd
# Add Extra Proxy Ports and Change Lists
Expand Down

0 comments on commit d08f509

Please sign in to comment.