From ace19f63fec6a72fc19e4c9ad065b3dfd2635dfd Mon Sep 17 00:00:00 2001 From: SzuWei Lin Date: Fri, 8 Mar 2019 18:16:54 +0800 Subject: [PATCH] Fix some system property missing problem on aosp_* targets Some PRODUCT_PROPERTY_OVERRIDES has no effect, ex. ro.dalvik.vm.native.bridge=0 in runtime_libart.mk, because gsi_common.mk uses ':=', not '+='. Bug: 125829345 Test: build aosp_arm64-userdebug Test: check the properties in /vendor/build.prop Change-Id: Ib5e026069e7919fed8a00f905f3dbaa15042107f --- target/product/gsi_common.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/product/gsi_common.mk b/target/product/gsi_common.mk index e87309bf1b..fb0478d933 100644 --- a/target/product/gsi_common.mk +++ b/target/product/gsi_common.mk @@ -24,12 +24,12 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/telephony_product.mk) $(call inherit-product-if-exists, frameworks/base/data/sounds/AllAudio.mk) # Additional settings used in all AOSP builds -PRODUCT_PROPERTY_OVERRIDES := \ +PRODUCT_PROPERTY_OVERRIDES += \ ro.config.ringtone=Ring_Synth_04.ogg \ ro.config.notification_sound=pixiedust.ogg # The mainline checking whitelist, should be clean up -PRODUCT_ARTIFACT_PATH_REQUIREMENT_WHITELIST := \ +PRODUCT_ARTIFACT_PATH_REQUIREMENT_WHITELIST += \ system/app/messaging/messaging.apk \ system/app/PhotoTable/PhotoTable.apk \ system/app/WAPPushManager/WAPPushManager.apk \