git-subtree-dir: qcom/opensource/eva-kernel git-subtree-mainline:f5ff6622bdgit-subtree-split:8fee9b929frepo: https://git.codelinaro.org/clo/la/platform/vendor/opensource/eva-kernel tag: LA.VENDOR.1.0.r1-24300-WAIPIO.QSSI14.0 Change-Id: I892822a1d8e5117ced883e5c20061ec0c8e21aa5
18 lines
453 B
Makefile
18 lines
453 B
Makefile
# Build eva kernel driver
|
|
|
|
ENABLE_EVA_KERNEL := true
|
|
ifeq ($(TARGET_USES_QMAA), true)
|
|
ifneq ($(TARGET_USES_QMAA_OVERRIDE_CVP), true)
|
|
ENABLE_EVA_KERNEL := false
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(ENABLE_EVA_KERNEL), true)
|
|
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifeq ($(call is-board-platform-in-list,$(TARGET_BOARD_PLATFORM)),true)
|
|
ifneq ($(call is-board-platform-in-list,parrot),true)
|
|
BOARD_VENDOR_KERNEL_MODULES += $(KERNEL_MODULES_OUT)/msm-eva.ko
|
|
endif
|
|
endif
|
|
endif
|
|
endif |