blob: 01ff14958ee39a3c7bbcd2bc4b74af699a95ca34 [file] [log] [blame]
Doug Zongkereef39442009-04-02 12:14:19 -07001#!/usr/bin/env python
2#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""
18Given a target-files zipfile, produces an image zipfile suitable for
19use with 'fastboot update'.
20
21Usage: img_from_target_files [flags] input_target_files output_image_zip
22
Doug Zongker55d93282011-01-25 17:03:34 -080023 -z (--bootable_zip)
24 Include only the bootable images (eg 'boot' and 'recovery') in
25 the output.
26
Doug Zongkereef39442009-04-02 12:14:19 -070027"""
28
Tao Bao89fbb0f2017-01-10 10:47:58 -080029from __future__ import print_function
30
Tao Bao76def242017-11-21 09:25:31 -080031import os
32import shutil
Doug Zongkereef39442009-04-02 12:14:19 -070033import sys
Tao Bao76def242017-11-21 09:25:31 -080034import zipfile
35
36import common
Doug Zongkereef39442009-04-02 12:14:19 -070037
Doug Zongkercf6d5a92014-02-18 10:57:07 -080038if sys.hexversion < 0x02070000:
Tao Bao89fbb0f2017-01-10 10:47:58 -080039 print("Python 2.7 or newer is required.", file=sys.stderr)
Doug Zongkereef39442009-04-02 12:14:19 -070040 sys.exit(1)
41
Doug Zongkereef39442009-04-02 12:14:19 -070042
43OPTIONS = common.OPTIONS
44
Ying Wanga0febe52013-03-20 11:02:05 -070045
Doug Zongkereef39442009-04-02 12:14:19 -070046def CopyInfo(output_zip):
47 """Copy the android-info.txt file from the input to the output."""
Tao Bao2ed665a2015-04-01 11:21:55 -070048 common.ZipWrite(
49 output_zip, os.path.join(OPTIONS.input_tmp, "OTA", "android-info.txt"),
50 "android-info.txt")
Doug Zongkereef39442009-04-02 12:14:19 -070051
52
53def main(argv):
Tao Bao76def242017-11-21 09:25:31 -080054 # This allows modifying the value from inner function.
55 bootable_only_array = [False]
Doug Zongkereef39442009-04-02 12:14:19 -070056
Dan Albert8b72aef2015-03-23 19:13:21 -070057 def option_handler(o, _):
Doug Zongker55d93282011-01-25 17:03:34 -080058 if o in ("-z", "--bootable_zip"):
Tao Bao76def242017-11-21 09:25:31 -080059 bootable_only_array[0] = True
Doug Zongkereef39442009-04-02 12:14:19 -070060 else:
61 return False
Doug Zongkerfdd8e692009-08-03 17:27:48 -070062 return True
Doug Zongkereef39442009-04-02 12:14:19 -070063
64 args = common.ParseOptions(argv, __doc__,
Doug Zongker3c84f562014-07-31 11:06:30 -070065 extra_opts="z",
66 extra_long_opts=["bootable_zip"],
Doug Zongkereef39442009-04-02 12:14:19 -070067 extra_option_handler=option_handler)
68
Tao Bao76def242017-11-21 09:25:31 -080069 bootable_only = bootable_only_array[0]
Doug Zongker55d93282011-01-25 17:03:34 -080070
Doug Zongkereef39442009-04-02 12:14:19 -070071 if len(args) != 2:
72 common.Usage(__doc__)
73 sys.exit(1)
74
Tao Baodba59ee2018-01-09 13:21:02 -080075 OPTIONS.input_tmp = common.UnzipTemp(args[0], ["IMAGES/*", "OTA/*"])
Doug Zongkereef39442009-04-02 12:14:19 -070076 output_zip = zipfile.ZipFile(args[1], "w", compression=zipfile.ZIP_DEFLATED)
Doug Zongker3c84f562014-07-31 11:06:30 -070077 CopyInfo(output_zip)
Doug Zongkereef39442009-04-02 12:14:19 -070078
Doug Zongker3c84f562014-07-31 11:06:30 -070079 try:
Doug Zongker3c84f562014-07-31 11:06:30 -070080 images_path = os.path.join(OPTIONS.input_tmp, "IMAGES")
Tao Bao2bb10972017-05-31 10:37:48 -070081 # A target-files zip must contain the images since Lollipop.
82 assert os.path.exists(images_path)
83 for image in sorted(os.listdir(images_path)):
84 if bootable_only and image not in ("boot.img", "recovery.img"):
85 continue
86 if not image.endswith(".img"):
87 continue
88 if image == "recovery-two-step.img":
89 continue
90 common.ZipWrite(output_zip, os.path.join(images_path, image), image)
Doug Zongker3c84f562014-07-31 11:06:30 -070091
92 finally:
Tao Bao89fbb0f2017-01-10 10:47:58 -080093 print("cleaning up...")
Tao Bao2ed665a2015-04-01 11:21:55 -070094 common.ZipClose(output_zip)
Doug Zongker3c84f562014-07-31 11:06:30 -070095 shutil.rmtree(OPTIONS.input_tmp)
Doug Zongkereef39442009-04-02 12:14:19 -070096
Tao Bao89fbb0f2017-01-10 10:47:58 -080097 print("done.")
Doug Zongkereef39442009-04-02 12:14:19 -070098
99
100if __name__ == '__main__':
101 try:
Ying Wang7e6d4e42010-12-13 16:25:36 -0800102 common.CloseInheritedPipes()
Doug Zongkereef39442009-04-02 12:14:19 -0700103 main(sys.argv[1:])
Dan Albert8b72aef2015-03-23 19:13:21 -0700104 except common.ExternalError as e:
Tao Bao89fbb0f2017-01-10 10:47:58 -0800105 print("\n ERROR: %s\n" % (e,))
Doug Zongkereef39442009-04-02 12:14:19 -0700106 sys.exit(1)