forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: aUsernameWoW <[email protected]>
- Loading branch information
1 parent
b9e5bb6
commit 18776c1
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# openwrt.config | ||
# 基础目标平台配置 | ||
CONFIG_TARGET_mediatek=y | ||
CONFIG_TARGET_mediatek_filogic=y | ||
CONFIG_TARGET_mediatek_filogic_DEVICE_xiaomi_mi-router-ax3000t=y | ||
|
||
# 编译环境配置 | ||
CONFIG_ALL_KMODS=y | ||
CONFIG_ALL_NONSHARED=y | ||
CONFIG_CCACHE=y | ||
CONFIG_DEVEL=y | ||
CONFIG_CCACHE_DIR=".ccache" | ||
|
||
# feeds配置 | ||
CONFIG_FEED_luci=y | ||
CONFIG_FEED_packages=y | ||
CONFIG_FEED_routing=y | ||
CONFIG_FEED_telephony=y | ||
|
||
# 内核功能配置 | ||
CONFIG_BPF=y | ||
CONFIG_BPF_SYSCALL=y | ||
CONFIG_BPF_JIT=y | ||
CONFIG_BPF_STREAM_PARSER=y | ||
CONFIG_BPF_EVENTS=y | ||
CONFIG_CGROUPS=y | ||
CONFIG_KPROBES=y | ||
CONFIG_KPROBE_EVENTS=y | ||
|
||
# 网络功能配置 | ||
CONFIG_NET_INGRESS=y | ||
CONFIG_NET_EGRESS=y | ||
CONFIG_NET_SCH_INGRESS=m | ||
CONFIG_NET_CLS_BPF=m | ||
CONFIG_NET_CLS_ACT=y | ||
CONFIG_LIBCURL_OPENSSL=y | ||
CONFIG_LIBCURL_ZSTD=y | ||
CONFIG_LIBCURL_NGHTTP3=n | ||
CONFIG_WPA_WOLFSSL=y | ||
|
||
# 调试信息配置 | ||
CONFIG_DEBUG_INFO=y | ||
CONFIG_DEBUG_INFO_BTF=y | ||
# CONFIG_DEBUG_INFO_REDUCED is not set | ||
|
||
# LUCI 界面配置 | ||
CONFIG_PACKAGE_luci=y | ||
CONFIG_PACKAGE_luci-light=y | ||
CONFIG_PACKAGE_luci-base=y | ||
CONFIG_PACKAGE_luci-lua-runtime=y | ||
|
||
# LUCI 模块配置 | ||
CONFIG_PACKAGE_luci-mod-admin-full=y | ||
CONFIG_PACKAGE_luci-mod-dashboard=y | ||
CONFIG_PACKAGE_luci-mod-network=y | ||
CONFIG_PACKAGE_luci-mod-status=y | ||
CONFIG_PACKAGE_luci-mod-system=y | ||
|
||
# LUCI 应用配置 | ||
CONFIG_PACKAGE_luci-app-firewall=y | ||
CONFIG_PACKAGE_luci-app-opkg=y | ||
CONFIG_PACKAGE_luci-app-turboacc=y | ||
CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_BBR_CCA=y | ||
CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_NFT_FULLCONE=y | ||
CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_OFFLOADING=y | ||
CONFIG_PACKAGE_luci-app-netspeedtest=y | ||
CONFIG_PACKAGE_luci-app-https-dns-proxy=y | ||
|
||
# LUCI 库配置 | ||
CONFIG_PACKAGE_luci-lib-base=y | ||
CONFIG_PACKAGE_luci-lib-ip=y | ||
CONFIG_PACKAGE_luci-lib-jsonc=y | ||
CONFIG_PACKAGE_luci-lib-nixio=y | ||
|
||
# LUCI 主题配置 | ||
CONFIG_PACKAGE_luci-theme-argon=y | ||
CONFIG_PACKAGE_luci-theme-bootstrap=y | ||
CONFIG_PACKAGE_luci-theme-openwrt-2020=y | ||
|
||
# LUCI i18n配置 | ||
CONFIG_LUCI_LANG_zh_Hans=y | ||
CONFIG_PACKAGE_luci-i18n-base-zh-cn=y | ||
CONFIG_PACKAGE_luci-i18n-dashboard-zh-cn=y | ||
CONFIG_PACKAGE_luci-i18n-firewall-zh-cn=y | ||
CONFIG_PACKAGE_luci-i18n-opkg-zh-cn=y | ||
|
||
# 协议支持配置 | ||
CONFIG_PACKAGE_luci-proto-ipv6=y | ||
CONFIG_PACKAGE_luci-proto-ppp=y | ||
|
||
# 系统工具配置 | ||
CONFIG_PACKAGE_wpad=y | ||
CONFIG_PACKAGE_zram-swap=y | ||
CONFIG_PACKAGE_btop=y | ||
CONFIG_PACKAGE_kmod=y | ||
CONFIG_ZRAM_DEF_COMP_ZSTD=y | ||
CONFIG_PACKAGE_uugamebooster=y |