
This provides the flexibility to use TARGET_BOARD_PLATFORM to maintain a common codebase while differentiating between products with TARGET_PRODUCT. CRs-Fixed: 2955427 Change-Id: I8938d3066fcbee39b845ea98f363bcb530636174 Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
24 行
679 B
Makefile
24 行
679 B
Makefile
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifneq ($(TARGET_BOARD_PLATFORM),qssi)
|
|
|
|
RMNET_WLAN_DLKM_PLATFORMS_LIST := lahaina
|
|
RMNET_WLAN_DLKM_PLATFORMS_LIST += holi
|
|
RMNET_WLAN_DLKM_PLATFORMS_LIST += taro
|
|
|
|
ifeq ($(call is-board-platform-in-list, $(RMNET_WLAN_DLKM_PLATFORMS_LIST)),true)
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
|
|
|
|
LOCAL_MODULE := rmnet_wlan.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
|