2edfb71d01
BoardConfig.mk typically defines TARGET_CPU_ABI to the name of the native machine code CPU ABI supported by the target device. For example, existing devices today use the value 'armeabi' corresponding to an ARMv5TE instruction set with soft-float implementation. This patch allows this file to also define TARGET_CPU_ABI2 to name a secondary (minor) CPU ABI also supported by the device. This is useful when the main ABI is ARMv7-A (identified as 'armeabi-v7a') which also supports ARMv5TE. Such devices should have TARGET_CPU_ABI defined to 'armeabi-v7a' and TARGET_CPU_ABI2 defined to 'armeabi'. TARGET_CPU_ABI2 will be translated into the ro.product.cpu.abi2 property in build.prop. This value will be used by the PackageManager to handle "fat-binaries" generated with the NDK.
40 lines
1.4 KiB
Bash
Executable file
40 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "# begin build properties"
|
|
echo "# autogenerated by buildinfo.sh"
|
|
|
|
echo "ro.build.id=$BUILD_ID"
|
|
echo "ro.build.display.id=$BUILD_DISPLAY_ID"
|
|
echo "ro.build.version.incremental=$BUILD_NUMBER"
|
|
echo "ro.build.version.sdk=$PLATFORM_SDK_VERSION"
|
|
echo "ro.build.version.codename=$PLATFORM_VERSION_CODENAME"
|
|
echo "ro.build.version.release=$PLATFORM_VERSION"
|
|
echo "ro.build.date=`date`"
|
|
echo "ro.build.date.utc=`date +%s`"
|
|
echo "ro.build.type=$TARGET_BUILD_TYPE"
|
|
echo "ro.build.user=$USER"
|
|
echo "ro.build.host=`hostname`"
|
|
echo "ro.build.tags=$BUILD_VERSION_TAGS"
|
|
echo "ro.product.model=$PRODUCT_MODEL"
|
|
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"
|
|
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.manufacturer=$PRODUCT_MANUFACTURER"
|
|
echo "ro.product.locale.language=$PRODUCT_DEFAULT_LANGUAGE"
|
|
echo "ro.product.locale.region=$PRODUCT_DEFAULT_REGION"
|
|
echo "ro.wifi.channels=$PRODUCT_DEFAULT_WIFI_CHANNELS"
|
|
echo "ro.board.platform=$TARGET_BOARD_PLATFORM"
|
|
|
|
echo "# ro.build.product is obsolete; use ro.product.device"
|
|
echo "ro.build.product=$TARGET_DEVICE"
|
|
|
|
echo "# Do not try to parse ro.build.description or .fingerprint"
|
|
echo "ro.build.description=$PRIVATE_BUILD_DESC"
|
|
echo "ro.build.fingerprint=$BUILD_FINGERPRINT"
|
|
|
|
echo "# end build properties"
|