summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-03-31 12:21:55 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-31 12:21:55 +0000
commitf6811abe12601c9753f329cb34da568f0072ca76 (patch)
tree58a43466cab39a6740156d747b8f96950668d229 /tools
parent7803fde3744305dc916b5197559da352a609d79b (diff)
parent9fbd3afdecc2fee211c11a6aedb39422fa8dd773 (diff)
downloadbuild-f6811abe12601c9753f329cb34da568f0072ca76.zip
build-f6811abe12601c9753f329cb34da568f0072ca76.tar.gz
build-f6811abe12601c9753f329cb34da568f0072ca76.tar.bz2
am 9fbd3afd: am 431b4bb3: Merge "Extend the CPU ABI specification mechanism."
* commit '9fbd3afdecc2fee211c11a6aedb39422fa8dd773': 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"