summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau2025-07-02 16:43:09 +0000
committerFelix Fietkau2025-07-05 12:41:00 +0000
commit39580b1d7bf4062238be26d85bcd33cf55464ee8 (patch)
tree1a856cf0974524c7cd4b73ce7ffcaba70b410b38
parent6e1d4afa86ea907f360ff837687969be1e780fd6 (diff)
downloadopenwrt-39580b1d7bf4062238be26d85bcd33cf55464ee8.tar.gz
hostapd: disable 802.11be support in the mini variant
802.11be capable platforms are big enough to not need the mini variant, and removing it here saves space for other other devices. Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--package/network/services/hostapd/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile
index 62c0a1952f..b90f4350e9 100644
--- a/package/network/services/hostapd/Makefile
+++ b/package/network/services/hostapd/Makefile
@@ -80,8 +80,10 @@ ifneq ($(CONFIG_DRIVER_11AX_SUPPORT),)
HOSTAPD_IEEE80211AX:=y
endif
-ifneq ($(CONFIG_DRIVER_11BE_SUPPORT),)
- HOSTAPD_IEEE80211BE:=y
+ifneq ($(LOCAL_VARIANT),mini)
+ ifneq ($(CONFIG_DRIVER_11BE_SUPPORT),)
+ HOSTAPD_IEEE80211BE:=y
+ endif
endif