Compare commits

...

8 Commits

Author SHA1 Message Date
RenanQueiroz
60417f306f softap: sdk: Add 'vendor.' prefix to wlan.driver.config
* In 126af66b04,
  the prop wlan.driver.config was renamed to vendor.wlan.driver.config.
  Therefore, make the same change on softap as well.

Change-Id: I696d851c8ecd35ec42cf680149c402b3b8044cfc
2019-10-14 23:49:49 +00:00
Erfan Abdi
c66d05249e qsap: Suppress errors
Change-Id: I2809d3acd0e2ae402f9d15351bc9cb7a68f5be7a
2019-10-14 23:49:49 +00:00
Christopher N. Hesse
b22300c86c softap: sdk: Declare VNDK usage
Change-Id: I8d408c34947d9febf6afa95929bf9fb696d9d097
2019-10-14 23:49:49 +00:00
Arne Coucheron
63e7558598 qsap: Fix missing log symbols
Add liblog to LOCAL_SHARED_LIBRARIES instead of using LOCAL_LDLIBS.

Change-Id: Iaf8fbc245babce372f047f73cb1400b19c54836d
2019-10-14 23:49:40 +00:00
Linux Build Service Account
2d7330f44e Merge 62ae34e1a4 on remote branch
Change-Id: Ib78e4eb07713c1af173547fec6934531b072d0ab
2019-04-07 17:01:46 -07:00
Linux Build Service Account
e43c9cb5b5 Merge 48b8ac4b24 on remote branch
Change-Id: I643234e61fdad021ac6462dd96469f0a4326980f
2019-02-18 17:12:02 -08:00
Hu Wang
48b8ac4b24 QSAP: Add support to set sae_require_mfp parameter
For SAE transtion mode, set sae_require_mfp to 1 to require MFP
for all associations using SAE.

CRs-Fixed: 2390790
Change-Id: I64bd35cbb77f6c9b64970c9a9db0a1bc3aeb2314
2019-01-31 10:26:14 +08:00
Linux Build Service Account
3728d9a42d Merge e0c1c7780a on remote branch
Change-Id: Idc3f12033916a1a0844ebfd33ba341d4d62e9f45
2019-01-28 07:18:34 -08:00
2 changed files with 14 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ endif
LOCAL_CFLAGS += -DSDK_VERSION=\"0.0.1.0\" LOCAL_CFLAGS += -DSDK_VERSION=\"0.0.1.0\"
LOCAL_LDLIBS := -llog LOCAL_USE_VNDK := true
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/qsap_api.h \ LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/qsap_api.h \
$(LOCAL_PATH)/qsap.h $(LOCAL_PATH)/qsap.h
@@ -61,12 +61,23 @@ ifdef WIFI_DRIVER_DEF_CONF_FILE
LOCAL_CFLAGS += -DWIFI_DRIVER_DEF_CONF_FILE=\"$(WIFI_DRIVER_DEF_CONF_FILE)\" LOCAL_CFLAGS += -DWIFI_DRIVER_DEF_CONF_FILE=\"$(WIFI_DRIVER_DEF_CONF_FILE)\"
endif endif
LOCAL_CFLAGS += \
-Wall \
-Werror \
-Wno-unused-variable \
-Wno-unused-value \
-Wno-format \
-Wno-sometimes-uninitialized \
-Wno-enum-conversion \
-Wno-unused-parameter \
-Wno-implicit-function-declaration
LOCAL_SRC_FILES := qsap_api.c \ LOCAL_SRC_FILES := qsap_api.c \
qsap.c qsap.c
LOCAL_PRELINK_MODULE := false LOCAL_PRELINK_MODULE := false
LOCAL_SHARED_LIBRARIES := libnetutils libutils libbinder libcutils libhardware_legacy libnl LOCAL_SHARED_LIBRARIES := libnetutils libutils libbinder libcutils libhardware_legacy libnl liblog
LOCAL_HEADER_LIBRARIES := libcutils_headers LOCAL_HEADER_LIBRARIES := libcutils_headers

View File

@@ -3450,7 +3450,7 @@ void check_for_configuration_files(void)
void qsap_set_ini_filename(void) void qsap_set_ini_filename(void)
{ {
if (property_get("wlan.driver.config", ini_file, NULL)) { if (property_get("vendor.wlan.driver.config", ini_file, NULL)) {
fIni = ini_file; fIni = ini_file;
ALOGE("INI FILE PROP PRESENT %s\n", fIni); ALOGE("INI FILE PROP PRESENT %s\n", fIni);
} else } else