OpenWrt-HelloWorld科学上网

zxlhhyccc b52b2d42bf gn: Update to git HEAD před 9 měsíci
.github 2055c88132 luci-app-ssr-plus: Fix Netflix's shunt domain list cannot proxy access. před 1 rokem
chinadns-ng 31b1943fe4 chinadns-ng: update to 2025.03.27 před 9 měsíci
dns2socks fb5bc1f1fd move dist feed pacakges před 3 roky
dns2socks-rust cecdab7303 dns2socks-rust: Add new package před 10 měsíci
dns2tcp 3b25bd98cc dns2tcp: Update to 1.1.2 (#1520) před 1 rokem
dnsproxy 918c07d639 dnsproxy: Add new package před 10 měsíci
gn b52b2d42bf gn: Update to git HEAD před 9 měsíci
hysteria fc58f1f1fb hysteria: update to 2.6.1 před 11 měsíci
ipt2socks a2018397be treewide: refactor to use PKG_BUILD_FLAGS před 2 roky
lua-neturl 53df51197b lua-neturl: make pkg release apk compatible. před 1 rokem
luci-app-ssr-plus 533ae0bb10 luci-app-ssr-plus: Add `chinadns-ng` proxy parse. před 9 měsíci
microsocks 5164f1b683 microsocks: update to 1.0.5 před 1 rokem
mosdns 9f3101fa14 mosdns: bump version před 1 rokem
naiveproxy b7f38bcae4 naiveproxy: Update to 135.0.7049.38-2 před 9 měsíci
redsocks2 40c85bce8d redsocks2: Bump version to 0.71 před 10 měsíci
shadow-tls 8b3e6a5d5b shadow-tls: update to 0.2.25 (#1371) před 2 roky
shadowsocks-libev d1a6118ed1 shadowsocks-libev: refresh patch před 1 rokem
shadowsocks-rust aa171cbdd3 shadowsocks-rust: update to 1.23.1 před 9 měsíci
shadowsocksr-libev 641cb2020e shadowsocksr-libev: add PKG_SOURCE fix compilation errors caused by pulling up old code. před 1 rokem
simple-obfs 77d17d36d9 treewide: drop `$(AUTORELEASE)` před 2 roky
tcping 77d17d36d9 treewide: drop `$(AUTORELEASE)` před 2 roky
trojan 118f75e9f0 trojan: add new package před 4 roky
tuic-client 97c5d350f9 tuic-client: add armv7 support před 2 roky
v2ray-core 18075857ea Update Makefile před 10 měsíci
v2ray-plugin cee47e81cb v2ray-plugin: Fix `GO_PKG` module path. před 1 rokem
v2raya 996294d0f8 v2raya: Update to 2.2.6.7 před 9 měsíci
xray-core c10a18392a Update Makefile před 10 měsíci
xray-plugin 1fd6b90d6b xray-plugin: update to 1.8.24 (#1564) před 1 rokem
LICENSE 9b0b7dfd99 Add License GPL-3.0-only před 3 roky
README.md bcd28d8a87 Update README.md před 1 rokem

README.md

Setup instruction

Install clang first.

Method 1 - Clone this repo directly

  1. Clone this repo:

    rm -rf package/helloworld
    git clone --depth=1 https://github.com/fw876/helloworld.git package/helloworld
    
  2. Pull upstream commits:

    git -C package/helloworld pull
    
  • Remove

    rm -rf package/helloworld
    

Method 2 - Add this repo as a git submodule

  1. Add new submodule:

    rm -rf package/helloworld
    git submodule add -f --name helloworld https://github.com/fw876/helloworld.git package/helloworld
    
  2. Pull upstream commits:

    git submodule update --remote package/helloworld
    
  • Remove

    git submodule deinit -f package/helloworld
    git rm -f package/helloworld
    git reset HEAD .gitmodules
    rm -rf .git/modules{/,/package/}helloworld
    

Method 3 - Add this repo as an OpenWrt feed

  1. Add new feed:

    sed -i "/helloworld/d" "feeds.conf.default"
    echo "src-git helloworld https://github.com/fw876/helloworld.git" >> "feeds.conf.default"
    
  2. Pull upstream commits:

    ./scripts/feeds update helloworld
    ./scripts/feeds install -a -f -p helloworld
    
  • Remove

    sed -i "/helloworld/d" "feeds.conf.default"
    ./scripts/feeds clean
    ./scripts/feeds update -a
    ./scripts/feeds install -a
    

Note

⚠ For OpenWrt 21.02 or lower version

You have to manually upgrade Golang toolchain to 1.21 or higher to compile Xray-core.