OpenWrt-HelloWorld科学上网

zxlhhyccc f3d73bfd64 luci-app-ssr-plus: Add update time choose. před 11 měsíci
.github 7ae3fb85cc CI: Free disk remaining space. před 1 rokem
chinadns-ng 2e5bdc8bf1 chinadns-ng: Fix typo před 11 měsíci
dns2socks fb5bc1f1fd move dist feed pacakges před 3 roky
dns2tcp 3b25bd98cc dns2tcp: Update to 1.1.2 (#1520) před 1 rokem
gn 43d6f9a70a gn: Update to git HEAD před 11 měsíci
hysteria 4c764e8a91 hysteria: update to 2.6.0 před 1 rokem
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 f3d73bfd64 luci-app-ssr-plus: Add update time choose. před 11 měsíci
microsocks 4ae3148919 microsocks: update to 1.0.4 (#1417) před 1 rokem
mosdns 9f3101fa14 mosdns: bump version před 1 rokem
naiveproxy e01e22a269 naiveproxy: update build scripts před 1 rokem
redsocks2 fb5bc1f1fd move dist feed pacakges před 3 roky
shadow-tls 8b3e6a5d5b shadow-tls: update to 0.2.25 (#1371) před 1 rokem
shadowsocks-libev 7749908d9d shadowsocks-libev: Add new package. před 1 rokem
shadowsocks-rust 03a65be4b6 shadowsocks-rust: update to 1.21.2 před 1 rokem
shadowsocksr-libev 03a8dfe947 shadowsocksr-libev: resolve recursive depend 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 5f06b358c3 v2ray-core: Bump to 5.22.0 před 11 měsíci
v2ray-plugin 066110462e v2ray-plugin: update to 5.17.0 (#1565) před 1 rokem
v2raya 36ed583f42 v2raya: update to 2.2.6 (#1568) před 1 rokem
xray-core 4e5edc8940 xray-core: update to 24.11.30 před 11 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.