wpa_supplicant: Add CONFIG_IEEE80211AC
In order to support P2P GO with 11ac support, add CONFIG_IEEE80211AC config option support to the Makefile. Signed-hostap: Eliad Peller <eliadx.peller@intel.com>
This commit is contained in:
parent
6b02335a96
commit
f2112b2ac8
2 changed files with 10 additions and 0 deletions
|
@ -750,6 +750,9 @@ OBJS += ../src/ap/beacon.o
|
||||||
OBJS += ../src/ap/eap_user_db.o
|
OBJS += ../src/ap/eap_user_db.o
|
||||||
ifdef CONFIG_IEEE80211N
|
ifdef CONFIG_IEEE80211N
|
||||||
OBJS += ../src/ap/ieee802_11_ht.o
|
OBJS += ../src/ap/ieee802_11_ht.o
|
||||||
|
ifdef CONFIG_IEEE80211AC
|
||||||
|
OBJS += ../src/ap/ieee802_11_vht.o
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_WNM
|
ifdef CONFIG_WNM
|
||||||
OBJS += ../src/ap/wnm_ap.o
|
OBJS += ../src/ap/wnm_ap.o
|
||||||
|
@ -765,6 +768,9 @@ OBJS += ../src/eap_server/eap_server_methods.o
|
||||||
|
|
||||||
ifdef CONFIG_IEEE80211N
|
ifdef CONFIG_IEEE80211N
|
||||||
CFLAGS += -DCONFIG_IEEE80211N
|
CFLAGS += -DCONFIG_IEEE80211N
|
||||||
|
ifdef CONFIG_IEEE80211AC
|
||||||
|
CFLAGS += -DCONFIG_IEEE80211AC
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef NEED_AP_MLME
|
ifdef NEED_AP_MLME
|
||||||
|
|
|
@ -484,6 +484,10 @@ CONFIG_PEERKEY=y
|
||||||
# IEEE 802.11n (High Throughput) support (mainly for AP mode)
|
# IEEE 802.11n (High Throughput) support (mainly for AP mode)
|
||||||
#CONFIG_IEEE80211N=y
|
#CONFIG_IEEE80211N=y
|
||||||
|
|
||||||
|
# IEEE 802.11ac (Very High Throughput) support (mainly for AP mode)
|
||||||
|
# (depends on CONFIG_IEEE80211N)
|
||||||
|
#CONFIG_IEEE80211AC=y
|
||||||
|
|
||||||
# Wireless Network Management (IEEE Std 802.11v-2011)
|
# Wireless Network Management (IEEE Std 802.11v-2011)
|
||||||
# Note: This is experimental and not complete implementation.
|
# Note: This is experimental and not complete implementation.
|
||||||
#CONFIG_WNM=y
|
#CONFIG_WNM=y
|
||||||
|
|
Loading…
Reference in a new issue