Compare commits

...

6 Commits

Author SHA1 Message Date
Rashed Abdel-Tawab
0dae032155 softap: Fix for VNDK_VERSION=current
Change-Id: I3925e794f5c065bd2843a4ea4c9fe122c182d5b3
2018-04-06 10:33:36 -07:00
Michael Bestas
a0d762d22f Merge tag 'LA.UM.6.4.r1-05900-8x98.0' of https://source.codeaurora.org/quic/la/platform/system/qcom into HEAD
"LA.UM.6.4.r1-05900-8x98.0"
2018-01-17 17:07:19 +02:00
Christopher N. Hesse
d55eb82100 softap: sdk: Declare VNDK usage
Change-Id: I8d408c34947d9febf6afa95929bf9fb696d9d097
2017-12-06 12:25:42 +01:00
Arne Coucheron
45125f5532 qsap: Fix missing log symbols
Add liblog to LOCAL_SHARED_LIBRARIES instead of using LOCAL_LDLIBS.

Change-Id: Iaf8fbc245babce372f047f73cb1400b19c54836d
2017-09-03 06:52:18 +02:00
Linux Build Service Account
ecb4615f55 Merge 8c3357cbe4 on remote branch
Change-Id: I6a96b51363a665ff812a120aaa2ffeb37f840faf
2017-08-27 00:25:51 -06:00
Linux Build Service Account
280eb6a2e5 Merge a49496aea8 on remote branch
Change-Id: I84692a2ceead1ea746b46cc4c8729d032ca1029c
2017-08-01 13:03:51 -06:00
4 changed files with 9 additions and 6 deletions

View File

@@ -15,6 +15,6 @@ LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \
$(JNI_H_INCLUDE)
LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
LOCAL_SHARED_LIBRARIES := libsysutils libcutils libnetutils libcrypto
LOCAL_SHARED_LIBRARIES := libsysutils libcutils libnetutils libcrypto liblog
include $(BUILD_SHARED_LIBRARY)

View File

@@ -12,7 +12,7 @@ LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS += -DSDK_VERSION=\"0.0.1.0\"
LOCAL_LDLIBS := -llog
LOCAL_USE_VNDK := true
LOCAL_COPY_HEADERS_TO := sdk/softap/include
LOCAL_COPY_HEADERS := qsap_api.h
@@ -63,7 +63,9 @@ LOCAL_SRC_FILES := qsap_api.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_VENDOR_MODULE := true
include $(BUILD_SHARED_LIBRARY)

View File

@@ -31,6 +31,7 @@
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <sched.h>
#include <string.h>
#include <stdio.h>
@@ -46,11 +47,11 @@
#define LOG_TAG "QCLDR-"
#include "cutils/log.h"
#include "log/log.h"
#include "cutils/memory.h"
#include "cutils/misc.h"
#include "cutils/properties.h"
#include "private/android_filesystem_config.h"
#include "cutils/android_filesystem_config.h"
#include "qsap_api.h"
#include "qsap.h"

View File

@@ -43,7 +43,7 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <private/android_filesystem_config.h>
#include <cutils/android_filesystem_config.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <netlink/netlink.h>