Android: Add CONFIG_IEEE80211AC option to makefile
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
parent
4ba83096e2
commit
643fab30a0
1 changed files with 8 additions and 2 deletions
|
@ -765,13 +765,16 @@ OBJS += src/ap/beacon.c
|
||||||
OBJS += src/ap/eap_user_db.c
|
OBJS += src/ap/eap_user_db.c
|
||||||
ifdef CONFIG_IEEE80211N
|
ifdef CONFIG_IEEE80211N
|
||||||
OBJS += src/ap/ieee802_11_ht.c
|
OBJS += src/ap/ieee802_11_ht.c
|
||||||
|
ifdef CONFIG_IEEE80211AC
|
||||||
|
OBJS += src/ap/ieee802_11_vht.c
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_CTRL_IFACE
|
|
||||||
OBJS += src/ap/ctrl_iface_ap.c
|
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_WNM
|
ifdef CONFIG_WNM
|
||||||
OBJS += src/ap/wnm_ap.c
|
OBJS += src/ap/wnm_ap.c
|
||||||
endif
|
endif
|
||||||
|
ifdef CONFIG_CTRL_IFACE
|
||||||
|
OBJS += src/ap/ctrl_iface_ap.c
|
||||||
|
endif
|
||||||
|
|
||||||
L_CFLAGS += -DEAP_SERVER -DEAP_SERVER_IDENTITY
|
L_CFLAGS += -DEAP_SERVER -DEAP_SERVER_IDENTITY
|
||||||
OBJS += src/eap_server/eap_server.c
|
OBJS += src/eap_server/eap_server.c
|
||||||
|
@ -780,6 +783,9 @@ OBJS += src/eap_server/eap_server_methods.c
|
||||||
|
|
||||||
ifdef CONFIG_IEEE80211N
|
ifdef CONFIG_IEEE80211N
|
||||||
L_CFLAGS += -DCONFIG_IEEE80211N
|
L_CFLAGS += -DCONFIG_IEEE80211N
|
||||||
|
ifdef CONFIG_IEEE80211AC
|
||||||
|
L_CFLAGS += -DCONFIG_IEEE80211AC
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef NEED_AP_MLME
|
ifdef NEED_AP_MLME
|
||||||
|
|
Loading…
Reference in a new issue