Chirayu Desai | 5924fec | 2022-01-13 18:09:26 +0200 | [diff] [blame] | 1 | # Pixel 6 Pro |
| 2 | |
| 3 | # Usage: ${firmware_partitions[@]} |
| 4 | readonly firmware_partitions=( |
| 5 | bl1 |
| 6 | pbl |
| 7 | bl2 |
| 8 | abl |
| 9 | bl31 |
| 10 | tzsw |
| 11 | gsa |
| 12 | ldfw |
| 13 | modem |
| 14 | ) |
| 15 | |
| 16 | # Usage: ${device_repos[@]} |
| 17 | device_repos=( |
| 18 | device/google/gs101 |
| 19 | device/google/gs101-sepolicy |
| 20 | device/google/raviole |
| 21 | ) |
| 22 | |
| 23 | # Need OTA zip for firmware, not supported by image_unpacker yet |
| 24 | readonly needs_ota=true |
| 25 | |
| 26 | # Updated manually |
| 27 | |
| 28 | readonly prev_build_id=S2B3.220205.007.A1 # 12L Beta 3 |
| 29 | readonly build_id=SP2A.220305.013.A3 # Mar 2022 |
| 30 | |
| 31 | # Updated automatically via pixel/update-device-vars.sh |
| 32 | |
| 33 | readonly prev_aosp_tag="unknown" |
| 34 | readonly aosp_tag="android-12.1.0_r2" |
| 35 | |
| 36 | readonly prev_build_number="8133516" |
| 37 | readonly build_number="8229987" |
| 38 | |
| 39 | readonly image_url="https://dl.google.com/dl/android/aosp/raven-sp2a.220305.013.a3-factory-87b3bf0a.zip" |
| 40 | readonly image_sha256="87b3bf0aab411afd17220eeb06c83492613b011cb02dcbabdf4fb18df7e2d630" |
| 41 | |
| 42 | readonly flash_url="https://flash.android.com/build/8229987?target=raven-user&signed" |
| 43 | |
| 44 | readonly ota_url="https://dl.google.com/dl/android/aosp/raven-ota-sp2a.220305.013.a3-14589c37.zip" |
| 45 | readonly ota_sha256="14589c377bfe5ee6ead1b6199e9d72cdde6b507ce6d151642d0d92058504b1c6" |
| 46 | |
| 47 | readonly security_patch="2022-03-05" |