android_kernel_samsung_sm86.../qcom/opensource/eva-kernel/eva_kernel_board.mk
David Wronek af64423e9f Add 'qcom/opensource/eva-kernel/' from commit 'c1ff9cd986e7dd66ecf6b385b92ac3de85c76f4e'
git-subtree-dir: qcom/opensource/eva-kernel
git-subtree-mainline: caab746e9f
git-subtree-split: c1ff9cd986
Change-Id:
repo: https://git.codelinaro.org/clo/la/platform/vendor/opensource/eva-kernel
tag: CV.LA.2.0.r1-04800-lanai.0
2024-10-06 16:44:44 +02:00

18 lines
465 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 ($(TARGET_BOARD_PLATFORM),volcano)
ENABLE_EVA_KERNEL := false
endif
ifeq ($(ENABLE_EVA_KERNEL), true)
ifneq ($(TARGET_BOARD_AUTO),true)
ifeq ($(call is-board-platform-in-list,$(TARGET_BOARD_PLATFORM)),true)
BOARD_VENDOR_KERNEL_MODULES += $(KERNEL_MODULES_OUT)/msm-eva.ko
endif
endif
endif