
BoardConfig.mk is not being processed by the build system in certain configurations. Add a duplicate check in the module specific makefile for module enablement. CRs-Fixed: 3593384 Change-Id: I1f2532583cc3364f368fd34469ae3fff62a6bba2 Signed-off-by: Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
27 рядки
782 B
Makefile
27 рядки
782 B
Makefile
ifeq ($(TARGET_DATARMNET_EXT_ENABLE), true)
|
|
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifneq ($(TARGET_BOARD_PLATFORM),qssi)
|
|
|
|
RMNET_MEM_DLKM_PLATFORMS_LIST := pineapple
|
|
RMNET_MEM_DLKM_PLATFORMS_LIST += blair
|
|
ifeq ($(call is-board-platform-in-list, $(RMNET_MEM_DLKM_PLATFORMS_LIST)),true)
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
#Enabling BAZEL
|
|
LOCAL_MODULE_DDK_BUILD := true
|
|
|
|
LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
|
|
LOCAL_CLANG :=true
|
|
LOCAL_MODULE := rmnet_mem.ko
|
|
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/**/*) $(wildcard $(LOCAL_PATH)/*)
|
|
|
|
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
|
|
|
|
include $(DLKM_DIR)/Build_external_kernelmodule.mk
|
|
|
|
endif #End of check for target
|
|
endif #End of Check for qssi target
|
|
endif #End of check for AUTO Target
|
|
endif #End of Check for datarmnet
|