blob: 9518cf664e8508effa78f04870dd8d16a3b8b767 [file] [log] [blame]
Chirayu Desai5924fec2022-01-13 18:09:26 +02001# Pixel 6 Pro
2
3# Usage: ${firmware_partitions[@]}
4readonly 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[@]}
17device_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
24readonly needs_ota=true
25
26# Updated manually
27
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053028readonly prev_build_id=SP2A.220405.004 # Apr 2022
29readonly build_id=SP2A.220505.002 # May 2022
Chirayu Desai5924fec2022-01-13 18:09:26 +020030
31# Updated automatically via pixel/update-device-vars.sh
32
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053033readonly prev_aosp_tag="android-12.1.0_r4"
34readonly aosp_tag="android-12.1.0_r5"
Chirayu Desai5924fec2022-01-13 18:09:26 +020035
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053036readonly prev_build_number="8233519"
37readonly build_number="8353555"
Chirayu Desai5924fec2022-01-13 18:09:26 +020038
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053039readonly image_url="https://dl.google.com/dl/android/aosp/raven-sp2a.220505.002-factory-e1266508.zip"
40readonly image_sha256="e12665088bb6f6aa4d1064e95daf6f2f47fcf4f1ca4e7e93dcb772651cefb3a1"
Chirayu Desai5924fec2022-01-13 18:09:26 +020041
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053042readonly flash_url="https://flash.android.com/build/8353555?target=raven-user&signed"
Chirayu Desai5924fec2022-01-13 18:09:26 +020043
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053044readonly ota_url="https://dl.google.com/dl/android/aosp/raven-ota-sp2a.220505.002-fb9e19f9.zip"
45readonly ota_sha256="fb9e19f968082b392dcb35c9209fb0c1ba75fb1d5aa5915d255629a2aa240e94"
Chirayu Desai5924fec2022-01-13 18:09:26 +020046
Chirayu Desai0b6eafa2022-05-02 23:32:42 +053047readonly security_patch="2022-05-05"