67932ab694
It's a vendor-specific property, which was historically included into /system/build.prop prior to this change. Whether a target uses A/B OTA shouldn't affect anything on the system image, including the `ro.build_ab_update` property. Moving it to vendor partition will also make it consistent with other A/B specific configs, such as the `slotselect` flag in device fstab (/vendor/etc/fstab.$(PRODUCT_PLATFORM)). Bug: 130516531 Test: Build and flash crosshatch-userdebug. Check /system/build.prop, /vendor/build.prop and the runtime property. Change-Id: I927625fbcc02c4a875a1f39850b51576f5ff6c66
55 lines
2.1 KiB
Bash
Executable file
55 lines
2.1 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.preview_sdk=$PLATFORM_PREVIEW_SDK_VERSION"
|
|
echo "ro.build.version.preview_sdk_fingerprint=$PLATFORM_PREVIEW_SDK_FINGERPRINT"
|
|
echo "ro.build.version.codename=$PLATFORM_VERSION_CODENAME"
|
|
echo "ro.build.version.all_codenames=$PLATFORM_VERSION_ALL_CODENAMES"
|
|
echo "ro.build.version.release=$PLATFORM_VERSION"
|
|
echo "ro.build.version.security_patch=$PLATFORM_SECURITY_PATCH"
|
|
echo "ro.build.version.base_os=$PLATFORM_BASE_OS"
|
|
echo "ro.build.version.min_supported_target_sdk=$PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION"
|
|
echo "ro.build.date=`$DATE`"
|
|
echo "ro.build.date.utc=`$DATE +%s`"
|
|
echo "ro.build.type=$TARGET_BUILD_TYPE"
|
|
echo "ro.build.user=$BUILD_USERNAME"
|
|
echo "ro.build.host=$BUILD_HOSTNAME"
|
|
echo "ro.build.tags=$BUILD_VERSION_TAGS"
|
|
echo "ro.build.flavor=$TARGET_BUILD_FLAVOR"
|
|
if [ -n "$BOARD_BUILD_SYSTEM_ROOT_IMAGE" ] ; then
|
|
echo "ro.build.system_root_image=$BOARD_BUILD_SYSTEM_ROOT_IMAGE"
|
|
fi
|
|
|
|
# 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.cpu.abilist32=$TARGET_CPU_ABI_LIST_32_BIT"
|
|
echo "ro.product.cpu.abilist64=$TARGET_CPU_ABI_LIST_64_BIT"
|
|
|
|
if [ -n "$PRODUCT_DEFAULT_LOCALE" ] ; then
|
|
echo "ro.product.locale=$PRODUCT_DEFAULT_LOCALE"
|
|
fi
|
|
echo "ro.wifi.channels=$PRODUCT_DEFAULT_WIFI_CHANNELS"
|
|
|
|
echo "# ro.build.product is obsolete; use ro.product.device"
|
|
echo "ro.build.product=$TARGET_DEVICE"
|
|
|
|
echo "# Do not try to parse description or thumbprint"
|
|
echo "ro.build.description=$PRIVATE_BUILD_DESC"
|
|
if [ -n "$BUILD_THUMBPRINT" ] ; then
|
|
echo "ro.build.thumbprint=$BUILD_THUMBPRINT"
|
|
fi
|
|
|
|
echo "# end build properties"
|