Files
chandu078 79150ebf0c Add 'qcom/opensource/eva-kernel/' from commit 'aedcaa9f1a67e36770f755d08c67ff179aab71ea'
git-subtree-dir: qcom/opensource/eva-kernel
git-subtree-mainline: 4b4153b0f5
git-subtree-split: aedcaa9f1a
2025-08-03 09:14:28 +05:30

16 lines
405 B
Makefile

# Build eva kernel driver
ENABLE_EVA_KERNEL := true
ifeq ($(TARGET_KERNEL_DLKM_DISABLE), true)
ifneq ($(TARGET_KERNEL_DLKM_EVA_OVERRIDE), 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)
BOARD_VENDOR_KERNEL_MODULES += $(KERNEL_MODULES_OUT)/msm-eva.ko
endif
endif
endif