Compare commits

...

12 Commits

Author SHA1 Message Date
RenanQueiroz
ae328f2dee 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-01-04 12:44:00 +01:00
Erfan Abdi
050bae8755 qsap: Suppress errors
Change-Id: I2809d3acd0e2ae402f9d15351bc9cb7a68f5be7a
2018-11-25 02:57:07 +02:00
Christopher N. Hesse
97cd381524 softap: sdk: Declare VNDK usage
Change-Id: I8d408c34947d9febf6afa95929bf9fb696d9d097
2018-11-25 02:57:06 +02:00
Arne Coucheron
12b534ce68 qsap: Fix missing log symbols
Add liblog to LOCAL_SHARED_LIBRARIES instead of using LOCAL_LDLIBS.

Change-Id: Iaf8fbc245babce372f047f73cb1400b19c54836d
2018-11-25 02:57:06 +02:00
Linux Build Service Account
0c179695fc Merge b44cdad94e on remote branch
Change-Id: I9c7e9422351bb2710b46c38fe782780d9223d1f8
2018-11-12 01:00:05 -08:00
Linux Build Service Account
4ea989bb3e Merge 996f2a81d8 on remote branch
Change-Id: I0d4923bd935dff4bb37e0903fda0461268432662
2018-10-07 22:17:33 -07:00
Linux Build Service Account
42aa6ff408 Merge 71d1ddbe77 on remote branch
Change-Id: I67b2d54ff36bef2906e85a2a9d65ea16c3946b93
2018-09-10 02:20:10 -07:00
Linux Build Service Account
c487e3b0fd Merge 76d63aadc7 on remote branch
Change-Id: Ie2f24a636641fed4c022ac594e186fb0c94bf4ab
2018-08-07 22:53:06 -07:00
Linux Build Service Account
babf4a5e8c Merge bfad727b06 on remote branch
Change-Id: I5941c38f9dec29f3ac8c1f3b1b56da87e5134d22
2018-06-25 03:04:11 -07:00
Linux Build Service Account
532be76674 Merge e4263cecd2 on remote branch
Change-Id: I54be310c5ed571d51e9207b7730de869b0aee3d1
2018-06-10 22:53:25 -07:00
Linux Build Service Account
ec2b4ca0c0 Merge c613ebbc1c on remote branch
Change-Id: Id249c67dc0ea4fc350ce2302e81c9d5d89632d66
2018-05-28 15:01:18 -07:00
Linux Build Service Account
a3e5d4e744 Merge f4f45de50c on remote branch
Change-Id: I48f2155a7c8b7b5a03e153e77e9a739fd84bd984
2018-04-25 09:33:19 -06: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_LDLIBS := -llog
LOCAL_USE_VNDK := true
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/qsap_api.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)\"
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 \
qsap.c
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

View File

@@ -3439,7 +3439,7 @@ void check_for_configuration_files(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;
ALOGE("INI FILE PROP PRESENT %s\n", fIni);
} else