Merge changes I1a5615e9,I01a673e7 into main

* changes:
  Remove dependency on non-AB modules
  Make build_image output consistent for partitions w/o build.prop
This commit is contained in:
Treehugger Robot 2024-04-08 19:57:56 +00:00 committed by Gerrit Code Review
commit cfec7d0f7b
2 changed files with 7 additions and 2 deletions

View file

@ -244,7 +244,6 @@ python_library_host {
"boot_signer",
"brotli",
"bsdiff",
"imgdiff",
"lz4",
"mkbootfs",
"signapk",
@ -308,7 +307,6 @@ python_defaults {
"brotli",
"bsdiff",
"deapexer",
"imgdiff",
"lz4",
"mkbootfs",
"signapk",

View file

@ -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()