🚀 仓库自动编译,感谢以下仓库的源主贡献。
➦openwrt主源码来自https://github.com/immortalwrt/immortalwrt
➦passwall源码来自 https://github.com/xiaorouji/openwrt-passwall
➦luci-app-ddns-go源码来自 https://github.com/sirpdboy/luci-app-ddns-go
➦smartdns源码来自 https://github.com/pymumu/smartdns
➦luci-app-lucky源码来自 https://github.com/gdy666/luci-app-lucky
➦luci-app-mosdns源码来自 https://github.com/sbwml/luci-app-mosdns
➦ddns源码来自 https://github.com/jeessy2/ddns-go
但不知道为何被ddns-go源主jeessy2拉黑了 若有冒犯,在此深表抱歉!
首次编译:
git clone https://github.com/coolsnowwolf/lede
cd lede
./scripts/feeds update -a && ./scripts/feeds install -a
make menuconfig
make download -j8
make V=s -j1
二次编译:
cd lede
git pull && ./scripts/feeds update -a && ./scripts/feeds install -a
make defconfig && make download -j8
make V=s -j$(nproc)
重新配置:
rm -rf ./tmp && rm -rf .config
make menuconfig
make V=s -j$(nproc)
DNS protocol standard
General DNS (UDP): 119.29.29.29 & udp://119.29.29.29:53
General DNS (TCP): tcp://119.29.29.29 & tcp://119.29.29.29:53
DNS-over-TLS: tls://120.53.53.53 & tls://120.53.53.53:853
DNS-over-HTTPS: https://120.53.53.53/dns-query
DNS-over-HTTPS (HTTP/3): h3://dns.alidns.com/dns-query
DNS-over-QUIC: quic://dns.alidns.com & doq://dns.alidns.com
English | 中文
A template for building OpenWrt with GitHub Actions
- Click the Use this template button to create a new repository.
- Generate
.config
files using Lean's OpenWrt source code. ( You can change it through environment variables in the workflow file. ) - Push
.config
file to the GitHub repository. - Select
Build OpenWrt
on the Actions page. - Click the
Run workflow
button. - When the build is complete, click the
Artifacts
button in the upper right corner of the Actions page to download the binaries.
- It may take a long time to create a
.config
file and build the OpenWrt firmware. Thus, before create repository to build your own firmware, you may check out if others have already built it which meet your needs by simply searchActions-Openwrt
in GitHub. - Add some meta info of your built firmware (such as firmware architecture and installed packages) to your repository introduction, this will save others' time.