From f14ec6bfc3572571891886fe7ff0fc19ac29ae05 Mon Sep 17 00:00:00 2001 From: Bowgo Tsai Date: Tue, 3 Sep 2019 10:43:05 +0800 Subject: [PATCH] Moving emulator-specific properties to /system_ext We're now adding a core CSI system.img that is common across different targets. So emulator-specific things should be moved to /system_ext. Bug: 137711197 Test: build and checks those properties are in /system_ext/build.prop Change-Id: I0f8afdeda77849b06842dd4f6cd04b7aab08ada4 --- target/product/emulator.mk | 6 +++--- target/product/emulator_vendor.mk | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/target/product/emulator.mk b/target/product/emulator.mk index f6e1011437..322eab4401 100644 --- a/target/product/emulator.mk +++ b/target/product/emulator.mk @@ -53,14 +53,14 @@ $(call inherit-product-if-exists, device/generic/goldfish/vendor.mk) #config.disable_location=true # Enable Perfetto traced -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ persist.traced.enable=1 # enable Google-specific location features, # like NetworkLocationProvider and LocationCollector -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ ro.com.google.locationfeatures=1 # disable setupwizard -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ ro.setupwizard.mode=DISABLED diff --git a/target/product/emulator_vendor.mk b/target/product/emulator_vendor.mk index 727987c322..9c3be8e2bc 100644 --- a/target/product/emulator_vendor.mk +++ b/target/product/emulator_vendor.mk @@ -58,14 +58,14 @@ $(call inherit-product-if-exists, device/generic/goldfish/vendor.mk) #config.disable_location=true # Enable Perfetto traced -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ persist.traced.enable=1 # enable Google-specific location features, # like NetworkLocationProvider and LocationCollector -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ ro.com.google.locationfeatures=1 # disable setupwizard -PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \ +PRODUCT_SYSTEM_EXT_PROPERTIES += \ ro.setupwizard.mode=DISABLED