diff options
Diffstat (limited to 'tools/buildinfo.sh')
-rwxr-xr-x | tools/buildinfo.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/buildinfo.sh b/tools/buildinfo.sh index efe7355ea8..e316212f78 100755 --- a/tools/buildinfo.sh +++ b/tools/buildinfo.sh @@ -51,9 +51,12 @@ if [ -n "$PRODUCT_DEFAULT_LOCALE" ] ; then fi echo "ro.wifi.channels=$PRODUCT_DEFAULT_WIFI_CHANNELS" -echo "# Do not try to parse thumbprint" +echo "# Do not try to parse fingerprint or thumbprint" +echo "ro.build.fingerprint=$BUILD_FINGERPRINT" if [ -n "$BUILD_THUMBPRINT" ] ; then echo "ro.build.thumbprint=$BUILD_THUMBPRINT" fi +echo "ro.ice.device=$ICE_DEVICE" + echo "# end build properties" |