-
Notifications
You must be signed in to change notification settings - Fork 76
/
vidofnir_esim.yml
213 lines (210 loc) · 7.11 KB
/
vidofnir_esim.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
name: "Volla Phone X23"
codename: "vidofnir_esim"
formfactor: "phone"
aliases:
- "vidofnir"
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
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:
# Firmware setup (bootstrap)
- actions:
- core:download:
group: "firmware"
files:
- url: "https://volla.tech/filedump/volla-vidofnir-12.0-ubports-installer-bootstrap-v2.zip"
checksum:
sum: "40c9b499bd51a9359a7eb6ca333c3dd7a362fb7bbafd1f853902c78cc84f032d"
algorithm: "sha256"
condition:
var: "bootstrap"
value: true
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "volla-vidofnir-12.0-ubports-installer-bootstrap-v2.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: "lk_a"
file: "unpacked/lk.img"
group: "firmware"
- partition: "boot_a"
file: "unpacked/boot.img"
group: "firmware"
- partition: "vendor_boot_a"
file: "unpacked/vendor_boot.img"
group: "firmware"
- partition: "vbmeta_a"
file: "unpacked/vbmeta.img"
group: "firmware"
flags: ["--disable-verity"]
- partition: "super"
file: "unpacked/super.img"
group: "firmware"
condition:
var: "bootstrap"
value: true
# Optionally wipe userdata
- actions:
- fastboot:format:
partition: "userdata"
type: "ext4"
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-vidofnir.zip"
checksum:
sum: "4ad9aa53980835bcefa379f1963e4e4dd71136b8e18f82b3397d586f406a66a0"
algorithm: "sha256"
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "volla-12.1-20240228-stable-SPFLASH-vidofnir.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: "lk"
file: "unpacked/lk.img"
group: "firmware"
- partition: "logo"
file: "unpacked/logo.bin"
group: "firmware"
- partition: "md1img"
file: "unpacked/md1img.img"
group: "firmware"
- partition: "super"
file: "unpacked/super.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"
- partition: "vendor_boot"
file: "unpacked/vendor_boot.img"
group: "firmware"
- actions:
- fastboot:erase:
partition: "userdata"
- 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 X 23. To proceed with the installation you have to confirm that you have read and understood the End User License Agreement (EULA) of Volla Systeme GmbH for the Volla OS and agree to it."
link: "https://volla.online/en/eula/index.html"