[openwrt/openwrt] hostapd: disable 802.11be support in the mini variant
LEDE Commits
lede-commits at lists.infradead.org
Sat Jul 5 05:44:26 PDT 2025
nbd pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/39580b1d7bf4062238be26d85bcd33cf55464ee8
commit 39580b1d7bf4062238be26d85bcd33cf55464ee8
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Wed Jul 2 18:43:09 2025 +0200
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 at nbd.name>
---
package/network/services/hostapd/Makefile | 6 ++++--
1 file 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
More information about the lede-commits
mailing list