文件
android_kernel_samsung_sm86…/Android.mk
Prabhanjan Kandula c51efa7c3a disp: add support to compile out display kernel module
This change provides required support to disable display module
compilation along with all modules and supports module specific
override to enable compilation if required.

Change-Id: I38acdce4083e38245eb6285c99d5dbbd15911fbb
Signed-off-by: Prabhanjan Kandula <quic_pkandula@quicinc.com>
2022-06-08 13:00:28 -07:00

13 行
327 B
Makefile

# Android makefile for display kernel modules
DISPLAY_DLKM_ENABLE := true
ifeq ($(TARGET_KERNEL_DLKM_DISABLE), true)
ifeq ($(TARGET_KERNEL_DLKM_DISPLAY_OVERRIDE), false)
DISPLAY_DLKM_ENABLE := false
endif
endif
ifeq ($(DISPLAY_DLKM_ENABLE), true)
LOCAL_PATH := $(call my-dir)
include $(LOCAL_PATH)/msm/Android.mk
endif