-
Notifications
You must be signed in to change notification settings - Fork 2
/
releasetools.py
108 lines (90 loc) · 3.72 KB
/
releasetools.py
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
# Copyright (C) 2009 The Android Open Source Project
# Copyright (C) 2019 The Mokee Open Source Project
# Copyright (C) 2019 The LineageOS Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import common
import re
def FullOTA_InstallEnd(info):
OTA_InstallEnd(info, False)
def IncrementalOTA_InstallEnd(info):
OTA_InstallEnd(info, True)
def AddImageOnly(info, basename, incremental, firmware):
if incremental:
input_zip = info.target_zip
else:
input_zip = info.input_zip
if firmware:
data = input_zip.read("RADIO/" + basename)
else:
data = input_zip.read("IMAGES/" + basename)
common.ZipWriteStr(info.output_zip, basename, data)
def AddImage(info, basename, dest, incremental):
AddImageOnly(info, basename, incremental, False)
info.script.AppendExtra('package_extract_file("%s", "%s");' % (basename, dest))
def OTA_InstallEnd(info, incremental):
info.script.Print("Patching vbmeta and dtbo images...")
AddImage(info, "vbmeta.img", "/dev/block/by-name/vbmeta", incremental)
AddImage(info, "dtbo.img", "/dev/block/by-name/dtbo", incremental)
Firmware_Images(info, incremental)
def Firmware_Images(info, incremental):
bin_map = {
'logo': ['logo']
}
img_map = {
'audio_dsp': ['audio_dsp'],
'cam_vpu1': ['cam_vpu1'],
'cam_vpu2': ['cam_vpu2'],
'cam_vpu3': ['cam_vpu3'],
'gz': ['gz1', 'gz2'],
'lk': ['lk', 'lk2'],
'md1img': ['md1img'],
'scp': ['scp1', 'scp2'],
'spmfw': ['spmfw'],
'sspm': ['sspm_1', 'sspm_2'],
'tee': ['tee1', 'tee2']
}
pl = 'preloader_ufs'
pl_part = ['sda', 'sdb']
fw_cmd = 'ifelse(getprop("ro.boot.hwc") == "India",\n(\n'
fw_cmd += 'ui_print("Flashing begoniain (Indian) firmware...");\n'
# Flash Indian Firmware
AddImageOnly(info, "{}_in.img".format(pl), incremental, True)
for part in pl_part:
fw_cmd += 'package_extract_file("{}_in.img", "/dev/block/{}");\n'.format(pl, part)
for img in img_map.keys():
AddImageOnly(info, '{}_in.img'.format(img), incremental, True)
for part in img_map[img]:
fw_cmd += 'package_extract_file("{}_in.img", "/dev/block/bootdevice/by-name/{}");\n'.format(img, part)
for _bin in bin_map.keys():
AddImageOnly(info, '{}_in.bin'.format(_bin), incremental, True)
for part in bin_map[_bin]:
fw_cmd += 'package_extract_file("{}_in.bin", "/dev/block/bootdevice/by-name/{}");\n'.format(_bin, part)
# END Flash Indian Firmware
fw_cmd += '),\n(\n'
fw_cmd += 'ui_print("Flashing begonia (Global) firmware...");\n'
# Flash Global Firmware
AddImageOnly(info, "{}.img".format(pl), incremental, True)
for part in pl_part:
fw_cmd += 'package_extract_file("{}.img", "/dev/block/{}");\n'.format(pl, part)
for img in img_map.keys():
AddImageOnly(info, '{}.img'.format(img), incremental, True)
for part in img_map[img]:
fw_cmd += 'package_extract_file("{}.img", "/dev/block/bootdevice/by-name/{}");\n'.format(img, part)
for _bin in bin_map.keys():
AddImageOnly(info, '{}.bin'.format(_bin), incremental, True)
for part in bin_map[_bin]:
fw_cmd += 'package_extract_file("{}.bin", "/dev/block/bootdevice/by-name/{}");\n'.format(_bin, part)
# END Flash Global Firmware
fw_cmd += ')\n);'
info.script.AppendExtra(fw_cmd)