forked from LineageOS/android_device_leeco_msm8996-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
releasetools.py
88 lines (77 loc) · 3.38 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
# Copyright (C) 2009 The Android Open Source Project
# Copyright (c) 2011, The Linux Foundation. All rights reserved.
# Copyright (C) 2018 The LineageOS 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 hashlib
import common
import re
def FullOTA_Assertions(info):
AddModemAssertion(info)
return
def FullOTA_InstallBegin(info):
info.script.Mount("/system")
UnlockVendorPartition(info)
info.script.Unmount("/system")
AddVendorAssertion(info)
return
def FullOTA_InstallEnd(info):
info.script.Mount("/vendor")
RunCustomScript(info, "deunify.sh", "")
info.script.Unmount("/vendor")
return
def IncrementalOTA_Assertions(info):
AddModemAssertion(info)
return
def IncrementalOTA_InstallBegin(info):
info.script.Mount("/system")
UnlockVendorPartition(info)
info.script.Unmount("/system")
AddVendorAssertion(info)
return
def IncrementalOTA_InstallEnd(info):
info.script.Mount("/vendor")
RunCustomScript(info, "deunify.sh", "")
info.script.Unmount("/vendor")
return
def AddVendorAssertion(info):
info.script.AppendExtra('assert(run_program("/tmp/partprobe.sh", "/dev/block/sde") == "0");');
info.script.AppendExtra('ifelse(is_mounted("/vendor"), unmount("/vendor"));');
cmd = 'assert(leeco.file_exists("/dev/block/bootdevice/by-name/vendor") == "1" || \
abort("Error: Vendor partition doesn\'t exist!"););'
info.script.AppendExtra(cmd)
return
def AddModemAssertion(info):
android_info = info.input_zip.read("OTA/android-info.txt")
m = re.search(r'require\s+version-modem\s*=\s*(.+)', android_info)
if m:
version = m.group(1).rstrip()
if len(version) and '*' not in version:
info.script.AppendExtra(('assert(leeco.verify_modem("%s") == "1");' % (version)))
return
def RunCustomScript(info, name, arg):
info.script.AppendExtra(('run_program("/tmp/install/bin/%s", "%s");' % (name, arg)))
return
def UnlockVendorPartition(info):
info.script.AppendExtra('package_extract_file("install/bin/toybox", "/tmp/toybox");');
info.script.AppendExtra('package_extract_file("install/bin/sgdisk", "/tmp/sgdisk");');
info.script.AppendExtra('package_extract_file("install/bin/unlock-vendor.sh", "/tmp/unlock-vendor.sh");');
info.script.AppendExtra('package_extract_file("install/bin/partprobe.sh", "/tmp/partprobe.sh");');
info.script.AppendExtra('set_metadata("/tmp/toybox", "uid", 0, "gid", 0, "mode", 0755);');
info.script.AppendExtra('set_metadata("/tmp/sgdisk", "uid", 0, "gid", 0, "mode", 0755);');
info.script.AppendExtra('set_metadata("/tmp/unlock-vendor.sh", "uid", 0, "gid", 0, "mode", 0755);');
info.script.AppendExtra('set_metadata("/tmp/partprobe.sh", "uid", 0, "gid", 0, "mode", 0755);');
info.script.AppendExtra('ui_print("Checking for vendor partition...");');
info.script.AppendExtra('if run_program("/tmp/unlock-vendor.sh") != 0 then');
info.script.AppendExtra('abort("Unlocking vendor partition failed.");');
info.script.AppendExtra('endif;');