This repository was archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathdevices.go
119 lines (110 loc) · 2.65 KB
/
devices.go
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
package devices
const (
blueline = "blueline"
crosshatch = "crosshatch"
sargo = "sargo"
bonito = "bonito"
flame = "flame"
coral = "coral"
sunfish = "sunfish"
redfin = "redfin"
avbModeChained = "vbmeta_chained"
avbModeChainedV2 = "vbmeta_chained_v2"
)
var (
supportedDevices = map[string]Device{}
deviceSortOrder []string
)
// Device contains details and metadata about a device
type Device struct {
Name string
Friendly string
Family string
AVBMode string
ExtraOTA string
}
func init() {
addDevices(
Device{
Name: blueline,
Friendly: "Pixel 3",
Family: "crosshatch",
AVBMode: avbModeChained,
ExtraOTA: "(--retrofit_dynamic_partitions)",
},
Device{
Name: crosshatch,
Friendly: "Pixel 3 XL",
Family: "crosshatch",
AVBMode: avbModeChained,
ExtraOTA: "(--retrofit_dynamic_partitions)",
},
Device{
Name: sargo,
Friendly: "Pixel 3a",
Family: "bonito",
AVBMode: avbModeChained,
ExtraOTA: "(--retrofit_dynamic_partitions)",
},
Device{
Name: bonito,
Friendly: "Pixel 3a XL",
Family: "bonito",
AVBMode: avbModeChained,
ExtraOTA: "(--retrofit_dynamic_partitions)",
},
Device{
Name: flame,
Friendly: "Pixel 4",
Family: "coral",
AVBMode: avbModeChainedV2,
},
Device{
Name: coral,
Friendly: "Pixel 4 XL",
Family: "coral",
AVBMode: avbModeChainedV2,
},
Device{
Name: sunfish,
Friendly: "Pixel 4a",
Family: "sunfish",
AVBMode: avbModeChainedV2,
},
Device{
Name: redfin,
Friendly: "Pixel 5",
Family: "redfin",
AVBMode: avbModeChainedV2,
},
)
}
func addDevices(devices ...Device) {
for _, device := range devices {
supportedDevices[device.Name] = device
deviceSortOrder = append(deviceSortOrder, device.Name)
}
}
// IsSupportedDevice takes device name (e.g. redfin) and returns boolean support value
func IsSupportedDevice(device string) bool {
if _, ok := supportedDevices[device]; !ok {
return false
}
return true
}
// GetDeviceDetails takes device name (e.g. redfin) and returns full Device details
func GetDeviceDetails(device string) Device {
return supportedDevices[device]
}
// GetDeviceFriendlyNames returns list of all supported device friendly names (e.g. Pixel 4a)
func GetDeviceFriendlyNames() []string {
var output []string
for _, device := range deviceSortOrder {
output = append(output, supportedDevices[device].Friendly)
}
return output
}
// GetDeviceCodeNames returns list of all supported devices code names (e.g. redfin)
func GetDeviceCodeNames() []string {
return deviceSortOrder
}