pixel: Drop prev_build_id and prev_build_number

Change-Id: I8e4723e9cbd3c78c70785a5ed312edc93079dd44
This commit is contained in:
Chirayu Desai
2023-05-02 02:17:43 +05:30
committed by Michael Bestas
parent 795e2a85dd
commit 9ec0cacf39
2 changed files with 2 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ Standard Variables:
* `firmware_partitions` - A matrix of the partition names of proprietary firmware images relevant to this device
* `device_repos` - A matrix of the file-paths of relevant AOSP repositories this device depends on.
* `{prev_,}build_id` - Previous/current device stock build ID tags
* `{prev_,}build_number` - Previous/current device stock build number strings
* `build_id` - Previous/current device stock build ID tags
* `build_number` - Previous/current device stock build number strings
* `image_url` - Direct link to device's latest factory image
* `image_sha256` - SHA256 sum of device's latest factory image
* `flash_url` - Stores a formatted link to Google's web-based [Flash tool](https://flash.android.com/welcome) which brings up the device's latest available image, additionally is used to fetch the data used to create build fingerprint changes

View File

@@ -73,7 +73,6 @@ main() {
sed -i "/ prev_aosp_tag=/c\readonly prev_aosp_tag=\"$aosp_tag\"" "${dv}"
sed -i "/ aosp_tag=/c\readonly aosp_tag=\"$new_aosp_tag\"" "${dv}"
fi
sed -i "/ prev_build_number=/c\readonly prev_build_number=\"$build_number\"" "${dv}"
sed -i "/ build_number=/c\readonly build_number=\"$new_build_number\"" "${dv}"
sed -i "/ image_url=/c\readonly image_url=\"$new_image_url\"" "${dv}"
sed -i "/ image_sha256=/c\readonly image_sha256=\"$new_image_sha256\"" "${dv}"