43c2f8aeee
"ro.vendor." prefix will be used only for vendor-specific properties
except for ro.vendor.build.date, ro.vendor.build.date.utc and
ro.vendor.build.fingerprint.
Those exceptions have been used since Android L. So we can't rename them
to support the system-only upgrade from old Android.
Bug: 36796459
Test: confirmed that ro.vendor.product.* were changed to
ro.product.vendor.* in vendor/build.prop
Merged-In: Ibc107b00264a2dc194261d1968b27a9b17b5d798
Change-Id: Ibc107b00264a2dc194261d1968b27a9b17b5d798
(cherry picked from commit 8cf6443264
)
15 lines
469 B
Bash
Executable file
15 lines
469 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "# begin build properties"
|
|
echo "# autogenerated by vendor_buildinfo.sh"
|
|
|
|
echo "ro.product.board=$TARGET_BOOTLOADER_BOARD_NAME"
|
|
echo "ro.board.platform=$TARGET_BOARD_PLATFORM"
|
|
|
|
echo "ro.product.vendor.manufacturer=$PRODUCT_MANUFACTURER"
|
|
echo "ro.product.vendor.model=$PRODUCT_MODEL"
|
|
echo "ro.product.vendor.brand=$PRODUCT_BRAND"
|
|
echo "ro.product.vendor.name=$PRODUCT_NAME"
|
|
echo "ro.product.vendor.device=$TARGET_DEVICE"
|
|
|
|
echo "# end build properties"
|