summaryrefslogtreecommitdiffstats
path: root/tools/buildinfo.sh
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-04-07 11:01:54 +0100
committerNarayan Kamath <narayan@google.com>2014-04-08 17:40:40 +0100
commit7303ebda84f64a2823f76282e8e1d6886da08cf0 (patch)
tree6b0fe6264ae5999b00264908a5339f8f4346ebcd /tools/buildinfo.sh
parent260942fa826052f24455dbaf74e54189efb44e8b (diff)
downloadbuild-7303ebda84f64a2823f76282e8e1d6886da08cf0.zip
build-7303ebda84f64a2823f76282e8e1d6886da08cf0.tar.gz
build-7303ebda84f64a2823f76282e8e1d6886da08cf0.tar.bz2
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
Diffstat (limited to 'tools/buildinfo.sh')
-rwxr-xr-xtools/buildinfo.sh2
1 files changed, 2 insertions, 0 deletions
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