FST: wpa_supplicant build rules
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
3794af2dc1
commit
79c7b36d12
4 changed files with 34 additions and 0 deletions
|
@ -316,6 +316,19 @@ L_CFLAGS += -DCONFIG_INTERWORKING
|
|||
NEED_GAS=y
|
||||
endif
|
||||
|
||||
ifdef CONFIG_FST
|
||||
L_CFLAGS += -DCONFIG_FST
|
||||
OBJS += src/fst/fst.c
|
||||
OBJS += src/fst/fst_session.c
|
||||
OBJS += src/fst/fst_iface.c
|
||||
OBJS += src/fst/fst_group.c
|
||||
OBJS += src/fst/fst_ctrl_aux.c
|
||||
ifdef CONFIG_CTRL_IFACE
|
||||
OBJS += src/fst/fst_ctrl_iface.c
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
include $(LOCAL_PATH)/src/drivers/drivers.mk
|
||||
|
||||
ifdef CONFIG_AP
|
||||
|
|
|
@ -1591,6 +1591,21 @@ EXTRALIBS += WbemUuid.Lib
|
|||
endif
|
||||
endif
|
||||
|
||||
ifdef CONFIG_FST
|
||||
CFLAGS += -DCONFIG_FST
|
||||
FST_OBJS += ../src/fst/fst.o
|
||||
FST_OBJS += ../src/fst/fst_session.o
|
||||
FST_OBJS += ../src/fst/fst_iface.o
|
||||
FST_OBJS += ../src/fst/fst_group.o
|
||||
FST_OBJS += ../src/fst/fst_ctrl_aux.o
|
||||
ifdef CONFIG_CTRL_IFACE
|
||||
FST_OBJS += ../src/fst/fst_ctrl_iface.o
|
||||
endif
|
||||
OBJS += $(FST_OBJS)
|
||||
OBJS_t += $(FST_OBJS)
|
||||
OBJS_t2 += $(FST_OBJS)
|
||||
endif
|
||||
|
||||
ifndef LDO
|
||||
LDO=$(CC)
|
||||
endif
|
||||
|
|
|
@ -476,4 +476,7 @@ CONFIG_WIFI_DISPLAY=y
|
|||
# External password backend for testing purposes (developer use)
|
||||
#CONFIG_EXT_PASSWORD_TEST=y
|
||||
|
||||
# Enable Fast Session Transfer (FST)
|
||||
#CONFIG_FST=y
|
||||
|
||||
include $(wildcard $(LOCAL_PATH)/android_config_*.inc)
|
||||
|
|
|
@ -495,3 +495,6 @@ CONFIG_PEERKEY=y
|
|||
#
|
||||
# External password backend for testing purposes (developer use)
|
||||
#CONFIG_EXT_PASSWORD_TEST=y
|
||||
|
||||
# Enable Fast Session Transfer (FST)
|
||||
#CONFIG_FST=y
|
||||
|
|
Loading…
Reference in a new issue