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

Commit 0a5b59e7 authored by Tao Bao's avatar Tao Bao Committed by Gerrit Code Review
Browse files

Merge "releasetools: Fix the reference to OPTIONS.info_dict."

parents 1c0b5eaf b31b94e1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -514,13 +514,13 @@ def _BuildBootableImage(sourcedir, fs_config_file, info_dict=None,
    img_keyblock.close()

  # AVB: if enabled, calculate and add hash to boot.img.
  if OPTIONS.info_dict.get("board_avb_enable", None) == "true":
  if info_dict.get("board_avb_enable", None) == "true":
    avbtool = os.getenv('AVBTOOL') or "avbtool"
    part_size = OPTIONS.info_dict.get("boot_size", None)
    part_size = info_dict.get("boot_size", None)
    cmd = [avbtool, "add_hash_footer", "--image", img.name,
           "--partition_size", str(part_size), "--partition_name", "boot"]
    AppendAVBSigningArgs(cmd)
    args = OPTIONS.info_dict.get("board_avb_boot_add_hash_footer_args", None)
    args = info_dict.get("board_avb_boot_add_hash_footer_args", None)
    if args and args.strip():
      cmd.extend(shlex.split(args))
    p = Run(cmd, stdout=subprocess.PIPE)