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

Commit b0fa40c8 authored by Brint E. Kriebel's avatar Brint E. Kriebel
Browse files

img_from_target_files: Skip oem.img in fastboot image creation

We don't need this package to be included in fastboot images, so skip
it when we are creating fastboot images.

Change-Id: I1e0676f5cbf7468088e6997f83ae845578864668
Ticket: CYNGNOS-936
parent e1caad28
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -111,6 +111,7 @@ def main(argv):
    if os.path.exists(images_path):
      # If this is a new target-files, it already contains the images,
      # and all we have to do is copy them to the output zip.
      # Skip oem.img files since they are not needed in fastboot images.
      images = os.listdir(images_path)
      if images:
        for image in images:
@@ -118,6 +119,8 @@ def main(argv):
            continue
          if not image.endswith(".img"):
            continue
          if image == "oem.img":
            continue
          common.ZipWrite(
              output_zip, os.path.join(images_path, image), image)
        done = True
@@ -165,12 +168,6 @@ def main(argv):
        add_img_to_target_files.AddUserdataExtra(output_zip, prefix="")
        banner("AddCache")
        add_img_to_target_files.AddCache(output_zip, prefix="")
        try:
          input_zip.getinfo("OEM/")
          banner("AddOem")
          add_img_to_target_files.AddOem(output_zip, prefix="")
        except KeyError:
          pass   # no oem partition for this device

  finally:
    print("cleaning up...")