summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGil <gilliu@google.com>2020-02-25 10:56:03 +0800
committerGil <gilliu@google.com>2020-02-26 19:17:29 +0800
commit29c509daa9b7c313c648f75b22d40a435c1108d6 (patch)
tree70353c070dbc09dcd8e1ad068d802a133348e3ea
parent8b089c8dcbaaee83da8d348e1d9dab2320906212 (diff)
downloaddisplay-29c509daa9b7c313c648f75b22d40a435c1108d6.tar.gz
[Display] Modify the current path for vendor.display.config
Modify the path for vendor.display.config Bug: 147407420 Test: VtsTrebleVendorVintfTest doesn't fail on vendor.display.config adb shell lshal -is vendor.display.config@1.9::IDisplayConfig/default adb shell lshal -Vli DM,FC Y vendor.display.config@1.9::IDisplayConfig/default adb shell lshal --init-vintf <hal format="hidl"> <name>vendor.display.config</name> <transport>hwbinder</transport> <fqname>@1.9::IDisplayConfig/default</fqname> </hal> Change-Id: Ibe4af2a3c36991c95e2be02e9d430e22ea2ec8b1
-rw-r--r--common.mk18
1 files changed, 9 insertions, 9 deletions
diff --git a/common.mk b/common.mk
index 1fa8c03d..2c427476 100644
--- a/common.mk
+++ b/common.mk
@@ -3,46 +3,46 @@ display_top := $(call my-dir)
#Get the highest display config version available
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.9" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.9" ];\
then echo DISPLAY_CONFIG_1_9; fi)
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.8" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.8" ];\
then echo DISPLAY_CONFIG_1_8; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.7" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.7" ];\
then echo DISPLAY_CONFIG_1_7; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.6" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.6" ];\
then echo DISPLAY_CONFIG_1_6; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.5" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.5" ];\
then echo DISPLAY_CONFIG_1_5; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.4" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.4" ];\
then echo DISPLAY_CONFIG_1_4; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.3" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.3" ];\
then echo DISPLAY_CONFIG_1_3; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.2" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.2" ];\
then echo DISPLAY_CONFIG_1_2; fi)
endif
ifeq ($(display_config_version),)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.1" ];\
+ if [ -d "$(QC_OPEN_PATH)/interfaces/display/config/1.1" ];\
then echo DISPLAY_CONFIG_1_1; fi)
endif