From 8d11febd5950228f506ce9f21898fabb8c125686 Mon Sep 17 00:00:00 2001 From: Isaac Chen Date: Wed, 31 Jan 2018 14:27:37 +0800 Subject: [PATCH] Add ro.vendor.product.cpu.* to vendor/build.prop CPU/ABIs related information is already in system/build.prop. It should also be included in the vendor image so it can still be examined outside of a device, build environment, or $OUT directory, by a standalone utility to check its basic characteristics and if it's compatible with some specific system image (usually GSI). Bug: 72079894 Test: Built and verified aosp_x86(_64): # On host $ grep ro.vendor.product.cpu $OUT/vendor/build.prop # On device $ getprop | grep ro.vendor.product $ su # grep ro.vendor.product /vendor/build.prop Change-Id: Ic9ac8065d5983710840e33a805f982de75d86ce3 --- core/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/Makefile b/core/Makefile index a3fbe33ab..3aa1617ff 100644 --- a/core/Makefile +++ b/core/Makefile @@ -406,6 +406,9 @@ $(INSTALLED_VENDOR_BUILD_PROP_TARGET): $(VENDOR_BUILDINFO_SH) $(intermediate_sys $(hide) echo ro.vendor.build.date=`$(DATE_FROM_FILE)`>>$@ $(hide) echo ro.vendor.build.date.utc=`$(DATE_FROM_FILE) +%s`>>$@ $(hide) echo ro.vendor.build.fingerprint="$(BUILD_FINGERPRINT_FROM_FILE)">>$@ + $(hide) echo ro.vendor.product.cpu.abilist="$(TARGET_CPU_ABI_LIST)">>$@ + $(hide) echo ro.vendor.product.cpu.abilist32="$(TARGET_CPU_ABI_LIST_32_BIT)">>$@ + $(hide) echo ro.vendor.product.cpu.abilist64="$(TARGET_CPU_ABI_LIST_64_BIT)">>$@ $(hide) TARGET_DEVICE="$(TARGET_DEVICE)" \ PRODUCT_NAME="$(TARGET_PRODUCT)" \ PRODUCT_BRAND="$(PRODUCT_BRAND)" \