
Adds the initial rmnet_wlan module. Change-Id: Ibf80879ec062150058b8db6d527df936bd2ae7a0 Signed-off-by: Sean Tranchetti <stranche@codeaurora.org>
24 linhas
672 B
Makefile
24 linhas
672 B
Makefile
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifneq ($(TARGET_PRODUCT),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
|