diff options
author | Alexander Koskovich <zvnexus@outlook.com> | 2020-11-24 12:06:01 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-01-16 08:24:08 +0800 |
commit | e0a60376ce6e979567edf1bfeb6b1b6f8a12ceb6 (patch) | |
tree | f659d31a2915dabbb20e6c521321a93f38a64cbc | |
parent | cdfc07813553ed5681292c6acd8b5f05d2f12fa7 (diff) |
common: Include QCOM AndroidBoardCommon
* Has a couple things common to QCOM targets, mount
points, and ION headers.
Change-Id: I2649e91f05b612a01877f0dd7ba300aec0461e8b
Squashed also with the following commmit:
Author: Vishalcj17 <vishalcj@aospa.co>
Date: Fri, 14 May 2021 18:57:48 +0700
common: Copy out Framework Compatibility Matrix from core.
Change-Id: I16f105fd4cfb89a236e0bde93ff98b58e17e67cc
Change-Id: I32b19cbf1b0a1b098f04a1ee7555941b71f93439
-rw-r--r-- | Android.mk | 5 | ||||
-rw-r--r-- | common.mk | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -17,3 +17,8 @@ LOCAL_PATH := $(call my-dir) include $(call all-makefiles-under,$(LOCAL_PATH)) + +# Common +ifeq ($(TARGET_FWK_SUPPORTS_FULL_VALUEADDS),true) +-include vendor/qcom/opensource/core-utils/build/AndroidBoardCommon.mk +endif @@ -24,6 +24,12 @@ TARGET_USES_QCOM_MM_AUDIO := true # Skip boot jars check SKIP_BOOT_JARS_CHECK := true +# Compatibility matrix +ifeq ($(TARGET_FWK_SUPPORTS_FULL_VALUEADDS),true) +DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE += \ + vendor/qcom/opensource/core-utils/vendor_framework_compatibility_matrix.xml +endif + # SECCOMP Extension BOARD_SECCOMP_POLICY += device/qcom/common/seccomp |