From 7303ebda84f64a2823f76282e8e1d6886da08cf0 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Mon, 7 Apr 2014 11:01:54 +0100 Subject: Add 32 / 64 bit abi lists to system properties. Introduce ro.product.cpu.abilist32 / abilist64, which are comma separated lists of the 32 and 64 bit ABIs that the device supports. These properties are used by the zygote and system server to determine what ABI an app should be started with. This changes move abilist related make steps out of envsetup.mk and into config.mk because they depend on variables set by core/combo/***. Additionally, config.mk performs a few additional cleanups of these variables (like stripping them) after the inclusion of envsetup.mk so this seems like a better place to put them. bug: 13647418 Change-Id: I3db39bdd761220c5b4966f651892fb592396f9a1 --- tools/buildinfo.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools') diff --git a/tools/buildinfo.sh b/tools/buildinfo.sh index 39ddc66..46a73f8 100755 --- a/tools/buildinfo.sh +++ b/tools/buildinfo.sh @@ -30,6 +30,8 @@ if [ -n "$TARGET_CPU_ABI2" ] ; then echo "ro.product.cpu.abi2=$TARGET_CPU_ABI2" fi echo "ro.product.cpu.abilist=$TARGET_CPU_ABI_LIST" +echo "ro.product.cpu.abilist32=$TARGET_CPU_ABI_LIST_32_BIT" +echo "ro.product.cpu.abilist64=$TARGET_CPU_ABI_LIST_64_BIT" echo "ro.product.manufacturer=$PRODUCT_MANUFACTURER" if [ -n "$PRODUCT_DEFAULT_LANGUAGE" ] ; then -- cgit v1.1