Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42b1b3f1 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '2104-s-prebuilt_vendor' into 'v1-s'

releasetools: support prebuilt vendor.img

See merge request !40
parents 70db9201 6ece1c9d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -520,7 +520,7 @@ def ProcessTargetFiles(input_tf_zip, output_tf_zip, misc_info,

  for info in input_tf_zip.infolist():
    filename = info.filename
    if filename.startswith("IMAGES/"):
    if filename.startswith("IMAGES/") and not filename.endswith("vendor.img"):
      continue

    # Skip OTA-specific images (e.g. split super images), which will be
@@ -1404,7 +1404,7 @@ def main(argv):
  common.ZipClose(output_zip)

  # Skip building userdata.img and cache.img when signing the target files.
  new_args = ["--is_signing"]
  new_args = ["--is_signing", "--add_missing"]
  # add_img_to_target_files builds the system image from scratch, so the
  # recovery patch is guaranteed to be regenerated there.
  if OPTIONS.rebuild_recovery: