projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e1d4af
)
hostapd: disable 802.11be support in the mini variant
author
Felix Fietkau
<
[email protected]
>
Wed, 2 Jul 2025 16:43:09 +0000
(18:43 +0200)
committer
Felix Fietkau
<
[email protected]
>
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 <
[email protected]
>
package/network/services/hostapd/Makefile
patch
|
blob
|
history
diff --git
a/package/network/services/hostapd/Makefile
b/package/network/services/hostapd/Makefile
index 62c0a1952fe068fca2388cbe4d256f697a040cf3..b90f4350e967d9e1e4dbcc561931a143e421aac5 100644
(file)
--- 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