Add support for booting up with default non-atomic mode
Add libdrmutils that currently has:
DRMMaster:
Creates a master DRM session
Converts ION handles to DRM FB_ID
DRMResMgr:
Enables a default display path by providing APIs for
connector id, crtc id, mode etc
Change-Id: I1dc697d2cc5e3fa744c99e2c9ddd57bf06e78c4f
CRs-fixed: 1114808
22 lines
650 B
Makefile
22 lines
650 B
Makefile
sdm-libs := sdm/libs
|
|
display-hals := include libqservice libqdutils $(sdm-libs)/utils $(sdm-libs)/core
|
|
|
|
ifneq ($(TARGET_IS_HEADLESS), true)
|
|
display-hals += libcopybit liblight libmemtrack hdmi_cec \
|
|
$(sdm-libs)/hwc $(sdm-libs)/hwc2 gpu_tonemapper libdrmutils
|
|
endif
|
|
|
|
ifneq ($(TARGET_USES_GRALLOC1), true)
|
|
display-hals += libgralloc
|
|
else
|
|
display-hals += libgralloc1
|
|
endif
|
|
|
|
ifeq ($(call is-vendor-board-platform,QCOM),true)
|
|
include $(call all-named-subdir-makefiles,$(display-hals))
|
|
else
|
|
ifneq ($(filter msm% apq%,$(TARGET_BOARD_PLATFORM)),)
|
|
include $(call all-named-subdir-makefiles,$(display-hals))
|
|
endif
|
|
endif
|