summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-03-31 12:35:14 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-31 12:35:14 +0000
commitb4d757b1b2677ee154992a8dd5607abe49107bdf (patch)
treeed8b039f4ce09e5d154c99f3fb934170c2a85bf3 /tools
parent376c686d7e798a5c6497d9a1ab7fb4f216f2664b (diff)
parentf6811abe12601c9753f329cb34da568f0072ca76 (diff)
downloadbuild-b4d757b1b2677ee154992a8dd5607abe49107bdf.zip
build-b4d757b1b2677ee154992a8dd5607abe49107bdf.tar.gz
build-b4d757b1b2677ee154992a8dd5607abe49107bdf.tar.bz2
am f6811abe: am 9fbd3afd: am 431b4bb3: Merge "Extend the CPU ABI specification mechanism."
* commit 'f6811abe12601c9753f329cb34da568f0072ca76': Extend the CPU ABI specification mechanism.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildinfo.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/buildinfo.sh b/tools/buildinfo.sh
index e3fe99c..39ddc66 100755
--- a/tools/buildinfo.sh
+++ b/tools/buildinfo.sh
@@ -20,10 +20,17 @@ echo "ro.product.brand=$PRODUCT_BRAND"
echo "ro.product.name=$PRODUCT_NAME"
echo "ro.product.device=$TARGET_DEVICE"
echo "ro.product.board=$TARGET_BOOTLOADER_BOARD_NAME"
+
+# These values are deprecated, use "ro.product.cpu.abilist"
+# instead (see below).
+echo "# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete,"
+echo "# use ro.product.cpu.abilist instead."
echo "ro.product.cpu.abi=$TARGET_CPU_ABI"
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.manufacturer=$PRODUCT_MANUFACTURER"
if [ -n "$PRODUCT_DEFAULT_LANGUAGE" ] ; then
echo "ro.product.locale.language=$PRODUCT_DEFAULT_LANGUAGE"