forked from ubports/installer-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsargo.json
152 lines (152 loc) · 5.06 KB
/
sargo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "Google Pixel 3a",
"codename": "sargo",
"unlock": ["unlock", "downgrade_android", "support"],
"user_actions": {
"unlock": {
"title": "OEM unlock",
"description": "If you haven't done so already, make sure to OEM unlock your device first.",
"link": "https://source.android.com/devices/bootloader/locking_unlocking#unlocking-bootloader"
},
"bootloader": {
"title": "Reboot to Bootloader",
"description": "With the device powered off, press and hold the volume down and power buttons until the screen turns on. It should say 'Fastboot Mode' underneath the warning sign.",
"image": "phone_power_down",
"button": true
},
"recovery": {
"title": "Reboot to Recovery",
"description": "With the device still at the 'Fastboot Mode' screen (if not, power off the device and press and hold volume down and power buttons until the screen turns on), select the 'Recovery Mode' option by using the volume buttons and press the power button to enter.",
"image": "phone_power_down",
"button": true
},
"downgrade_android": {
"title": "Downgrade Android",
"description": "If the device is running an Android version above 9.0, you have to downgrade to the last 9.0 release. Please make sure to flash version PQ3B.190801.002 of the factory image before proceeding.",
"link": "https://developers.google.com/android/images#sargo"
},
"support": {
"title": "Support",
"description": "For details about Ubuntu Touch support for the Pixel 3a, please head over to the UBports forum thread.",
"link": "https://forums.ubports.com/topic/4621/google-pixel-3a-sargo"
}
},
"operating_systems": [
{
"name": "Ubuntu Touch",
"sanity_check": "Are you sure?",
"options": [
{
"var": "channel",
"name": "Channel",
"tooltip": "The release channel",
"link": "https://docs.ubports.com/en/latest/about/process/release-schedule.html",
"type": "select",
"remote_values": { "type": "systemimagechannels" }
},
{
"var": "wipe",
"name": "Wipe Userdata",
"tooltip": "Wipe personal data",
"type": "checkbox"
},
{
"var": "bootstrap",
"name": "Bootstrap",
"tooltip": "Flash system partitions using fastboot",
"type": "checkbox",
"value": true
}
],
"prerequisites": [],
"steps": [
{
"type": "download",
"condition": {"var": "bootstrap", "value": true},
"group": "firmware",
"files": [
{
"url": "https://cdimage.ubports.com/devices/sargo/boot.img",
"checksum": {
"sum": "3125fa5cdd097cd69b8005af13e4c6a4a4cc61b83c6b13b219799def51fff2fa",
"algorithm": "sha256"
}
},
{
"url": "https://cdimage.ubports.com/devices/sargo/dtbo.img",
"checksum": {
"sum": "51e63686ee4bb15e1ddc296f8809996d645d114347daebacc561cf02d2bfce2d",
"algorithm": "sha256"
}
},
{
"url": "https://cdimage.ubports.com/devices/sargo/vbmeta.img",
"checksum": {
"sum": "854a2c2a5e82c2c49a5d9d62c70334002c7dcd9203f904952ff5fc43b2eac420",
"algorithm": "sha256"
}
}
]
},
{
"type": "adb:reboot",
"condition": {"var": "bootstrap", "value": true},
"to_state": "bootloader",
"fallback_user_action": "bootloader"
},
{
"type": "fastboot:set_active",
"slot": "b"
},
{
"type": "fastboot:flash",
"condition": {"var": "bootstrap", "value": true},
"flash": [
{
"partition": "boot",
"file": "boot.img",
"group": "firmware"
},
{
"partition": "dtbo",
"file": "dtbo.img",
"group": "firmware"
},
{
"partition": "vbmeta",
"file": "vbmeta.img",
"group": "firmware",
"flags": ["--disable-verity", "--disable-verification"]
}
]
},
{
"type": "fastboot:format",
"condition": {"var": "wipe", "value": true},
"partition": "userdata",
"partitionType": "ext4"
},
{
"type": "user_action",
"condition": {"var": "bootstrap", "value": true},
"action": "recovery"
},
{
"type": "adb:reboot",
"condition": {"var": "bootstrap", "value": false},
"to_state": "recovery",
"fallback_user_action": "recovery"
},
{
"type": "systemimage"
},
{
"type": "adb:reboot",
"to_state": "recovery",
"fallback_user_action": "recovery"
}
],
"slideshow": []
}
]
}