-
Notifications
You must be signed in to change notification settings - Fork 76
/
denniz.yml
154 lines (152 loc) · 5.27 KB
/
denniz.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
name: "OnePlus Nord 2 5G"
codename: "denniz"
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
confirm_model:
title: "Confirm your model"
description: "Please double-check that your device is the following model: OnePlus Nord 2 5G"
confirm_firmware:
title: "Confirm your firmware"
description: "Please double-check that your device is running stock **Android 11** firmware. If you're on Android 12 or newer, you will need to downgrade first."
unlock:
title: "OEM unlock"
description: "If you haven't done so already, make sure to unlock your device bootloader first."
unlock:
- "confirm_model"
- "confirm_firmware"
- "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 Android."
type: "checkbox"
- var: "bootstrap"
name: "Bootstrap"
tooltip: "Flash system partitions using fastboot"
type: "checkbox"
value: true
prerequisites: []
steps:
# Firmware setup (bootstrap)
- actions:
- core:download:
group: "firmware"
files:
- url: "https://github.com/ubuntu-touch-denniz/ubuntu-touch-denniz/releases/download/20221020/super.zip"
name: "super.zip"
checksum:
sum: "b157287a25bf5a9baffd08e421638b0ba5a3335d3fb6ed3f60cab32646a93332"
algorithm: "sha256"
- url: "https://github.com/ubuntu-touch-denniz/ubuntu-touch-denniz/releases/download/20221020/recovery.img"
name: "recovery.img"
checksum:
sum: "cd6ec16aa37fdd092310dec591eeeef96811ba3c68cb949a996628e89ee17a9b"
algorithm: "sha256"
- url: "https://github.com/ubuntu-touch-denniz/ubuntu-touch-denniz/releases/download/20221020/dtbo.img"
name: "dtbo.img"
checksum:
sum: "0d49f0606c88b2280607d8aa8381bf4e4b1f647c79ce784fb0d2c3be7b6397b1"
algorithm: "sha256"
- url: "https://dl.google.com/developers/android/qt/images/gsi/vbmeta.img"
name: "vbmeta.img"
checksum:
sum: "f6da5489fd877cb69cf61fa721cfd6d77e530084aefe9b96664f818947ff61f6"
algorithm: "sha256"
condition:
var: "bootstrap"
value: true
- actions:
- core:unpack:
group: "firmware"
files:
- archive: "super.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:flash:
partitions:
- partition: "vbmeta"
file: "vbmeta.img"
group: "firmware"
- partition: "dtbo"
file: "dtbo.img"
group: "firmware"
- partition: "recovery"
file: "recovery.img"
group: "firmware"
- partition: "super"
file: "unpacked/super.img"
group: "firmware"
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: []