From 29c509daa9b7c313c648f75b22d40a435c1108d6 Mon Sep 17 00:00:00 2001 From: Gil Date: Tue, 25 Feb 2020 10:56:03 +0800 Subject: [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 vendor.display.config hwbinder @1.9::IDisplayConfig/default Change-Id: Ibe4af2a3c36991c95e2be02e9d430e22ea2ec8b1 --- common.mk | 18 +++++++++--------- 1 file 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 -- cgit v1.2.3