|
@@ -1,7 +1,14 @@
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
-# Build video kernel driver
|
|
|
|
|
|
+TARGET_VIDC_ENABLE := false
|
|
ifeq ($(TARGET_USES_QMAA),false)
|
|
ifeq ($(TARGET_USES_QMAA),false)
|
|
|
|
+TARGET_VIDC_ENABLE := true
|
|
|
|
+endif
|
|
ifeq ($(TARGET_USES_QMAA_OVERRIDE_VIDEO),true)
|
|
ifeq ($(TARGET_USES_QMAA_OVERRIDE_VIDEO),true)
|
|
|
|
+TARGET_VIDC_ENABLE := true
|
|
|
|
+endif
|
|
|
|
+
|
|
|
|
+# Build video kernel driver
|
|
|
|
+ifeq ($(TARGET_VIDC_ENABLE),true)
|
|
ifneq ($(TARGET_KERNEL_DLKM_DISABLE),true)
|
|
ifneq ($(TARGET_KERNEL_DLKM_DISABLE),true)
|
|
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifeq ($(call is-board-platform-in-list,$(TARGET_BOARD_PLATFORM)),true)
|
|
ifeq ($(call is-board-platform-in-list,$(TARGET_BOARD_PLATFORM)),true)
|
|
@@ -12,4 +19,3 @@ endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
-endif
|
|
|