forked from ubports/installer-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflo.json
146 lines (146 loc) · 4.53 KB
/
flo.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
{
"name": "Nexus 7 2013 WiFi",
"codename": "flo",
"unlock": ["confirm_model"],
"user_actions": {
"recovery": {
"title": "Reboot to Recovery",
"description": "With the device powered off, hold Volume Down + Power until the bootloader appears, then release the buttons. Use the volume buttons to scroll to “RECOVERY” and press Power to select.",
"image": "phone_power_down",
"button": true
},
"bootloader": {
"title": "Reboot to Bootloader",
"description": "With the device powered off, hold Volume Down + Power until the bootloader appears.",
"image": "phone_power_down",
"button": true
},
"confirm_model": {
"title": "Confirm your model",
"description": "Please double-check that your device is an LG Nexus 7 2013 WiFi (flo). If you have the LTE version (deb), you have to select that instead. The 2012 version is not compatible."
}
},
"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
},
{
"var": "format",
"name": "Format system partitions",
"tooltip": "Needed if the device is coming from android. This will lead to data-loss.",
"type": "checkbox",
"value": false
}
],
"prerequisites": [],
"steps": [
{
"type": "download",
"condition": {"var": "bootstrap", "value": true},
"group": "firmware",
"files": [
{
"url": "https://gitlab.com/ubports/community-ports/flo/raw/76f6151b1291fe1cf8739d2b080c83543a62a051/partitions/recovery.img",
"checksum": {
"sum": "cdbf7a58ff49a55a977b43a933625f6b8845687259d6b96bc5047f197bde49e6",
"algorithm": "sha256"
}
},
{
"url": "https://gitlab.com/ubports/community-ports/flo/raw/76f6151b1291fe1cf8739d2b080c83543a62a051/partitions/boot.img",
"checksum": {
"sum": "c288f81ae5e71b8be91c446932ff734dcd251c035bd368804a04f6b5fa21dcb6",
"algorithm": "sha256"
}
}
]
},
{
"type": "adb:reboot",
"condition": {"var": "bootstrap", "value": true},
"to_state": "bootloader",
"fallback_user_action": "bootloader"
},
{
"type": "fastboot:flash",
"condition": {"var": "bootstrap", "value": true},
"flash": [
{
"partition": "boot",
"file": "boot.img",
"group": "firmware"
},
{
"partition": "recovery",
"file": "recovery.img",
"group": "firmware"
}
]
},
{
"type": "fastboot:erase",
"condition": {"var": "bootstrap", "value": true},
"partition": "cache"
},
{
"type": "fastboot:boot",
"condition": {"var": "bootstrap", "value": true},
"file": "recovery.img",
"fallback_user_action": "recovery",
"group": "firmware"
},
{
"type": "adb:reboot",
"condition": {"var": "bootstrap", "value": false},
"to_state": "recovery",
"fallback_user_action": "recovery"
},
{
"type": "adb:format",
"condition": {"var": "format", "value": true},
"partition": "system"
},
{
"type": "adb:format",
"condition": {"var": "format", "value": true},
"partition": "data"
},
{
"type": "adb:format",
"partition": "cache"
},
{
"type": "systemimage"
},
{
"type": "adb:reboot",
"to_state": "recovery",
"fallback_user_action": "recovery"
}
],
"slideshow": []
}
]
}