
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>
13 rader
286 B
Makefile
13 rader
286 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
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)
|
|
PRODUCT_PACKAGES += msm_drm.ko
|
|
endif
|