]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
hostapd: disable 802.11be support in the mini variant
authorFelix Fietkau <nbd@nbd.name>
Wed, 2 Jul 2025 16:43:09 +0000 (18:43 +0200)
committerFelix Fietkau <nbd@nbd.name>
Sat, 5 Jul 2025 12:41:00 +0000 (14:41 +0200)
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>
package/network/services/hostapd/Makefile

index 62c0a1952fe068fca2388cbe4d256f697a040cf3..b90f4350e967d9e1e4dbcc561931a143e421aac5 100644 (file)
@@ -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