-
Notifications
You must be signed in to change notification settings - Fork 76
/
mimameid.yml
446 lines (444 loc) · 15.5 KB
/
mimameid.yml
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
name: "Volla Phone 22"
codename: "mimameid"
formfactor: "phone"
aliases: []
user_actions:
recovery:
title: "Reboot to Recovery"
description: 'With the device powered off, hold Volume Down + Power. You might be prompted to select a mode to boot into. If that happens, follow the on-screen instructions and select "Recovery" mode.'
image: "phone_power_up"
button: true
bootloader:
title: "Reboot to Bootloader"
description: 'With the device powered off, hold Volume Up + Power. You might be prompted to select a mode to boot into. If that happens, follow the on-screen instructions and select "Fastboot" mode.'
image: "phone_power_up"
button: true
boot:
title: "Reboot the device"
description: "Hold down the power button until the device powers down. Then, release it briefly and hold it down again until the device boots."
button: true
display_notice:
title: "Replacement Display Notice"
description: "The selected OS requires Android 11 firmware which does NOT support Volla Phone 22 devices with replaced display panels. If that is the case or you're unsure, to avoid soft-bricking your phone please restart the process and instead select 'Volla Phone 22 with new display' as the device!"
button: true
cutie_notice:
title: "Cutie Shell: Notice"
description: "You selected to install Droidian with Cutie Shell. Cutie Shell is still pre-alpha quality and it is not suitable for production environments. Keep in mind that Cutie Shell is not officially supported or endorsed by Droidian. This edition is maintained directly by Cutie Shell Community Project and you should report any bugs with these images at Cutie Shell Community Project before filing upstream."
button: true
twrp_sideload:
title: "TWRP sideload"
description: 'Select "Advanced" and then "ADB Sideload". Do NOT check either of the wipe boxes, just swipe the bar on the bottom where it says "Swipe to Start Sideload".'
button: true
twrp_sideload_reboot:
title: "Sideload complete!"
description: "Follow the on-screen instructions to complete the sideload."
button: true
unlock: []
handlers:
bootloader_locked:
actions:
- fastboot:flashing_unlock:
operating_systems:
- name: "Ubuntu Touch"
compatible_installer: ">=0.9.2-beta"
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:
systemimage:channels:
- var: "wipe"
name: "Wipe Userdata"
tooltip: "Wipe personal data. *Required* if switching from Volla OS."
type: "checkbox"
- var: "bootstrap"
name: "Bootstrap"
tooltip: "Flash system partitions using fastboot. Do NOT uncheck unless you know exactly what you're doing!"
type: "checkbox"
value: true
prerequisites: []
steps:
- actions:
- core:user_action:
action: "display_notice"
# Firmware setup (bootstrap)
- actions:
- core:download:
group: "firmware"
files:
- url: "https://volla.tech/filedump/volla-mimameid-11.0-ubports-installer-bootstrap-v3.zip"
checksum:
sum: "a1fb6b27e3f693c7155e6a64dfdc58d00198921ffe04040aac4a124a657acd05"
algorithm: "sha256"
condition:
var: "bootstrap"
value: true
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "volla-mimameid-11.0-ubports-installer-bootstrap-v3.zip"
dir: "unpacked"
condition:
var: "bootstrap"
value: true
- actions:
- adb:reboot:
to_state: "bootloader"
fallback:
- core:user_action:
action: "bootloader"
condition:
var: "bootstrap"
value: true
- actions:
- fastboot:set_active:
slot: "a"
condition:
var: "bootstrap"
value: true
- actions:
- fastboot:flash:
partitions:
- partition: "boot_a"
file: "unpacked/boot.img"
group: "firmware"
- partition: "dtbo_a"
file: "unpacked/dtbo.img"
group: "firmware"
- partition: "gz_a"
file: "unpacked/gz.img"
group: "firmware"
- partition: "lk_a"
file: "unpacked/lk.img"
group: "firmware"
- partition: "logo"
file: "unpacked/logo.img"
group: "firmware"
- partition: "md1img_a"
file: "unpacked/md1img.img"
group: "firmware"
- partition: "preloader_a"
file: "unpacked/preloader.img"
group: "firmware"
- partition: "scp_a"
file: "unpacked/scp.img"
group: "firmware"
- partition: "spmfw_a"
file: "unpacked/spmfw.img"
group: "firmware"
- partition: "sspm_a"
file: "unpacked/sspm.img"
group: "firmware"
- partition: "super"
file: "unpacked/super.img"
group: "firmware"
- partition: "tee_a"
file: "unpacked/tee.img"
group: "firmware"
- partition: "vbmeta_a"
file: "unpacked/vbmeta.img"
group: "firmware"
flags: ["--disable-verity"]
condition:
var: "bootstrap"
value: true
# Optionally wipe userdata
- actions:
- fastboot:format:
partition: "userdata"
condition:
var: "wipe"
value: true
# Reboot to UBports recovery to install UT
- actions:
- fastboot:reboot_recovery:
fallback:
- core:user_action:
action: "recovery"
condition:
var: "bootstrap"
value: true
- actions:
- adb:reboot:
to_state: "recovery"
fallback:
- core:user_action:
action: "recovery"
condition:
var: "bootstrap"
value: false
- actions:
- systemimage:install:
- actions:
- adb:reboot:
to_state: "recovery"
fallback:
- core:user_action:
action: "recovery"
slideshow: []
- name: "Volla OS"
compatible_installer: ">=0.9.2-beta"
prerequisites: []
steps:
- actions:
- core:download:
group: "firmware"
files:
- url: "https://volla.tech/filedump/vollaos/volla-12.1-20240228-stable-SPFLASH-mimameid.zip"
checksum:
sum: "7038740f7efc183a54a0bb5816c9d10fa8c7a5ef0a95cc19a2565255b060954e"
algorithm: "sha256"
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "volla-12.1-20240228-stable-SPFLASH-mimameid.zip"
dir: "unpacked"
- actions:
- adb:reboot:
to_state: "bootloader"
fallback:
- core:user_action:
action: "bootloader"
- actions:
- fastboot:flash:
partitions:
- partition: "boot"
file: "unpacked/boot.img"
group: "firmware"
- partition: "dtbo"
file: "unpacked/dtbo.img"
group: "firmware"
- partition: "gz"
file: "unpacked/gz.img"
group: "firmware"
- partition: "lk"
file: "unpacked/lk.img"
group: "firmware"
- partition: "logo"
file: "unpacked/logo.bin"
group: "firmware"
- partition: "md1img"
file: "unpacked/md1img.img"
group: "firmware"
- partition: "preloader"
file: "unpacked/preloader.img"
group: "firmware"
- partition: "scp"
file: "unpacked/scp.img"
group: "firmware"
- partition: "spmfw"
file: "unpacked/spmfw.img"
group: "firmware"
- partition: "sspm"
file: "unpacked/sspm.img"
group: "firmware"
- partition: "super"
file: "unpacked/super.img"
group: "firmware"
- partition: "tee"
file: "unpacked/tee.img"
group: "firmware"
- partition: "vbmeta"
file: "unpacked/vbmeta.img"
group: "firmware"
- partition: "vbmeta_system"
file: "unpacked/vbmeta_system.img"
group: "firmware"
- partition: "vbmeta_vendor"
file: "unpacked/vbmeta_vendor.img"
group: "firmware"
- actions:
- fastboot:erase:
partition: "userdata"
- actions:
- fastboot:erase:
partition: "nvdata"
- actions:
- fastboot:reboot:
fallback:
- core:user_action:
action: "boot"
slideshow: []
eula:
title: "EULA"
description: "THE TERMS OF USE OF THE VOLLA OS ONLY ALLOW AN INSTALLATION ON A CLEARLY BRANDED VOLLA PHONE 22. To proceed with the installation you have to confirm that you have read and understood the End User License Agreement (EULA) of Hallo Welt Systeme UG (haftungsbeschränkt) for the Volla OS and agree to it."
link: "https://volla.online/en/eula/index.html"
- name: "Droidian"
compatible_installer: ">=0.9.2-beta"
options:
- var: "variant"
name: "Variant"
tooltip: "The graphical shell to install"
type: "select"
values:
- value: "phosh"
label: "Phosh"
- value: "cutie"
label: "Cutie Shell"
- var: "bootstrap"
name: "Bootstrap"
tooltip: "Flash system partitions using fastboot. Do NOT uncheck unless you know exactly what you're doing!"
type: "checkbox"
value: true
prerequisites: []
steps:
- actions:
- core:user_action:
action: "display_notice"
- actions:
- core:user_action:
action: "cutie_notice"
condition:
var: "variant"
value: "cutie"
# Firmware setup (bootstrap)
- actions:
- core:download:
group: "firmware"
files:
- url: "https://volla.tech/filedump/volla-mimameid-11.0-ubports-installer-bootstrap-v3.zip"
checksum:
sum: "a1fb6b27e3f693c7155e6a64dfdc58d00198921ffe04040aac4a124a657acd05"
algorithm: "sha256"
condition:
var: "bootstrap"
value: true
- actions:
- core:download:
group: "firmware"
files:
- url: "http://deb.cutie-shell.org/twrp-mimameid.img"
checksum:
sum: "1d44b9201d5dd9bc18a5d12a4c2e05d00e485d67512b69a7e253b62649df62bc"
algorithm: "sha256"
condition:
var: "bootstrap"
value: true
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "volla-mimameid-11.0-ubports-installer-bootstrap-v3.zip"
dir: "unpacked"
condition:
var: "bootstrap"
value: true
- actions:
- core:download:
group: "firmware"
files:
- url: "https://images.droidian.org/droidian/nightly/arm64/volla/image-fastboot-mimameid.zip"
condition:
var: "variant"
value: "phosh"
- actions:
- core:download:
group: "firmware"
files:
- url: "https://github.com/cutie-shell/droidian/releases/download/nightly/droidian-OFFICIAL_volla_mimameid-arm64-cutie-phone-30.zip"
condition:
var: "variant"
value: "cutie"
- actions:
- adb:reboot:
to_state: "bootloader"
fallback:
- core:user_action:
action: "bootloader"
condition:
var: "bootstrap"
value: true
- actions:
- fastboot:set_active:
slot: "a"
condition:
var: "bootstrap"
value: true
- actions:
- fastboot:format:
partition: "userdata"
- actions:
- fastboot:flash:
partitions:
- partition: "boot_a"
file: "twrp-mimameid.img"
group: "firmware"
- partition: "dtbo_a"
file: "unpacked/dtbo.img"
group: "firmware"
- partition: "gz_a"
file: "unpacked/gz.img"
group: "firmware"
- partition: "lk_a"
file: "unpacked/lk.img"
group: "firmware"
- partition: "logo"
file: "unpacked/logo.img"
group: "firmware"
- partition: "md1img_a"
file: "unpacked/md1img.img"
group: "firmware"
- partition: "preloader_a"
file: "unpacked/preloader.img"
group: "firmware"
- partition: "scp_a"
file: "unpacked/scp.img"
group: "firmware"
- partition: "spmfw_a"
file: "unpacked/spmfw.img"
group: "firmware"
- partition: "sspm_a"
file: "unpacked/sspm.img"
group: "firmware"
- partition: "super"
file: "unpacked/super.img"
group: "firmware"
- partition: "tee_a"
file: "unpacked/tee.img"
group: "firmware"
- partition: "vbmeta_a"
file: "unpacked/vbmeta.img"
group: "firmware"
flags: ["--disable-verity"]
condition:
var: "bootstrap"
value: true
- actions:
- fastboot:reboot_recovery:
fallback:
- core:user_action:
action: "recovery"
condition:
var: "bootstrap"
value: true
- actions:
- core:user_action:
action: "twrp_sideload"
- actions:
- adb:sideload:
file: "image-fastboot-mimameid.zip"
group: "firmware"
condition:
var: "variant"
value: "phosh"
- actions:
- adb:sideload:
file: "droidian-OFFICIAL_volla_mimameid-arm64-cutie-phone-30.zip"
group: "firmware"
condition:
var: "variant"
value: "cutie"
- actions:
- core:user_action:
action: "twrp_sideload_reboot"
- actions:
- adb:reboot:
to_state: "system"
fallback:
- core:user_action:
action: "boot"
slideshow: []