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

Commit 4dc08997 authored by Kelvin Zhang's avatar Kelvin Zhang
Browse files

Make build_image output consistent for partitions w/o build.prop

Bug: 331405669
Change-Id: I01a673e7c842a5042d85f079e29c680c4d7b589c
parent eb59dd9c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -955,6 +955,13 @@ def LoadInfoDict(input_file, repacking=False):
  d["build.prop"] = d["system.build.prop"]

  if d.get("avb_enable") == "true":
    build_info = BuildInfo(d, use_legacy_id=True)
    # Set up the salt for partitions without build.prop
    if build_info.fingerprint:
      if "fingerprint" not in d:
        d["fingerprint"] = build_info.fingerprint
      if "avb_salt" not in d:
        d["avb_salt"] = sha256(build_info.fingerprint.encode()).hexdigest()
    # Set the vbmeta digest if exists
    try:
      d["vbmeta_digest"] = read_helper("META/vbmeta_digest.txt").rstrip()