blob: 4422b53fdad2fba801a88fdbf7eb1fa33bd624b6 [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
Doug Zongkereef39442009-04-02 12:14:19 -070031import sys
32
Doug Zongkercf6d5a92014-02-18 10:57:07 -080033if sys.hexversion < 0x02070000:
Tao Bao89fbb0f2017-01-10 10:47:58 -080034 print("Python 2.7 or newer is required.", file=sys.stderr)
Doug Zongkereef39442009-04-02 12:14:19 -070035 sys.exit(1)
36
37import os
Doug Zongkereef39442009-04-02 12:14:19 -070038import shutil
Doug Zongkereef39442009-04-02 12:14:19 -070039import zipfile
40
Doug Zongkereef39442009-04-02 12:14:19 -070041import common
42
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):
Doug Zongker55d93282011-01-25 17:03:34 -080054 bootable_only = [False]
Doug Zongkereef39442009-04-02 12:14:19 -070055
Dan Albert8b72aef2015-03-23 19:13:21 -070056 def option_handler(o, _):
Doug Zongker55d93282011-01-25 17:03:34 -080057 if o in ("-z", "--bootable_zip"):
58 bootable_only[0] = True
Doug Zongkereef39442009-04-02 12:14:19 -070059 else:
60 return False
Doug Zongkerfdd8e692009-08-03 17:27:48 -070061 return True
Doug Zongkereef39442009-04-02 12:14:19 -070062
63 args = common.ParseOptions(argv, __doc__,
Doug Zongker3c84f562014-07-31 11:06:30 -070064 extra_opts="z",
65 extra_long_opts=["bootable_zip"],
Doug Zongkereef39442009-04-02 12:14:19 -070066 extra_option_handler=option_handler)
67
Doug Zongker55d93282011-01-25 17:03:34 -080068 bootable_only = bootable_only[0]
69
Doug Zongkereef39442009-04-02 12:14:19 -070070 if len(args) != 2:
71 common.Usage(__doc__)
72 sys.exit(1)
73
Tao Bao2bb10972017-05-31 10:37:48 -070074 OPTIONS.input_tmp, input_zip = common.UnzipTemp(
75 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)