mirror of
https://github.com/nxp-imx/mwifiex.git
synced 2024-11-15 03:25:35 +00:00
60e93a5ec9
changes: 1. WCSWREL-211 Fixed System reboot when switch wifi hotspot security mode from WPA2 to none 2. Fix compilation error for 5.15 kernel Change-Id: I2080dd5421c0a9bb084565699800c96c160537ac Signed-off-by: yang.tian <yang.tian@nxp.com>
40 lines
943 B
Makefile
40 lines
943 B
Makefile
LOCAL_PATH := $(my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# Enable DEBUG Level
|
|
DEBUG_LEVEL=1
|
|
ifeq ($(DEBUG_LEVEL),1)
|
|
LOCAL_CFLAGS += -DDEBUG_LEVEL1
|
|
endif
|
|
ifeq ($(DEBUG_LEVEL),2)
|
|
LOCAL_CFLAGS += -DDEBUG_LEVEL1
|
|
LOCAL_CFLAGS += -DDEBUG_LEVEL2
|
|
endif
|
|
# Enable STA mode support
|
|
CONFIG_STA_SUPPORT=y
|
|
ifeq ($(CONFIG_STA_SUPPORT),y)
|
|
LOCAL_CFLAGS += -DSTA_SUPPORT
|
|
endif
|
|
# Enable uAP mode support
|
|
CONFIG_UAP_SUPPORT=y
|
|
ifeq ($(CONFIG_UAP_SUPPORT),y)
|
|
LOCAL_CFLAGS += -DUAP_SUPPORT
|
|
endif
|
|
CONFIG_WIFI_DIRECT_SUPPORT=y
|
|
ifeq ($(CONFIG_WIFI_DIRECT_SUPPORT), y)
|
|
LOCAL_CFLAGS += -DWIFI_DIRECT_SUPPORT
|
|
endif
|
|
|
|
# if 64bit Android is used (e.g. PXA1928)
|
|
# Please turn on following compiler flag
|
|
CONFIG_USERSPACE_32BIT_OVER_KERNEL_64BIT=n
|
|
ifeq ($(CONFIG_USERSPACE_32BIT_OVER_KERNEL_64BIT), y)
|
|
LOCAL_CFLAGS += -DUSERSPACE_32BIT_OVER_KERNEL_64BIT
|
|
endif
|
|
|
|
LOCAL_MODULE := mlanutl
|
|
OBJS = mlanutl.c
|
|
LOCAL_SRC_FILES := $(OBJS)
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_EXECUTABLE)
|