-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreleasetools.py
More file actions
81 lines (67 loc) · 2.71 KB
/
releasetools.py
File metadata and controls
81 lines (67 loc) · 2.71 KB
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
#
# Copyright (C) 2016 Paranoid Android
#
# 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
import sha
def FullOTA_Assertions(info):
print "FullOTA_Assertions not implemented"
def IncrementalOTA_Assertions(info):
print "IncrementalOTA_Assertions not implemented"
def InstallImage(img_name, img_file, partition, info):
common.ZipWriteStr(info.output_zip, "firmware/" + img_name, img_file)
info.script.AppendExtra(('package_extract_file("' + "firmware/" + img_name + '", "/dev/block/bootdevice/by-name/' + partition + '");'))
image_partitions_common = {
'emmc_appsboot.mbn' : 'aboot',
'NON-HLOS.bin' : 'modem',
'static_nvbk.bin' : 'oem_stanvbk',
'rpm.mbn' : 'rpm',
'pmic.elf' : 'pmic',
'tz.mbn' : 'tz',
'hyp.mbn' : 'hyp',
'BTFM.bin' : 'bluetooth',
'cmnlib.mbn' : 'cmnlib',
'cmnlib64.mbn' : 'cmnlib64',
'devcfg.mbn' : 'devcfg',
'keymaster.mbn' : 'keymaster',
'xbl.elf' : 'xbl',
'adspso.bin' : 'dsp'
}
image_partitions_op3 = {
'lksecapp.mbn' : 'lksecapp'
}
image_partitions_op3t = {
}
def FullOTA_InstallEnd(info):
info.script.Print("Writing recommended firmware...")
image_partitions_op3.update(image_partitions_common);
image_partitions_op3t.update(image_partitions_common);
info.script.AppendExtra('if getprop("ro.boot.project_name") == "15801" then')
for k, v in image_partitions_op3.iteritems():
try:
img_file = info.input_zip.read("firmware/" + k + "-op3")
InstallImage(k + "-op3", img_file, v, info)
except KeyError:
print "warning: no " + k + " image in input target_files; not flashing " + k
info.script.AppendExtra('endif;')
info.script.AppendExtra('if getprop("ro.boot.project_name") == "15811" then')
for k, v in image_partitions_op3t.iteritems():
try:
img_file = info.input_zip.read("firmware/" + k + "-op3t")
InstallImage(k + "-op3t", img_file, v, info)
except KeyError:
print "warning: no " + k + " image in input target_files; not flashing " + k
info.script.AppendExtra('endif;')
def IncrementalOTA_InstallEnd(info):
info.script.Print("Firmware flashing extension is not supported on incremental builds.")