Merge changes I1a5615e9,I01a673e7 into main am: cfec7d0f7b

Original change: https://android-review.googlesource.com/c/platform/build/+/3031707

Change-Id: Ic0dd201560318e74afaf45e3d8fcb183403caf8f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2024-04-08 20:12:29 +00:00 committed by Automerger Merge Worker
commit 8c20948735
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()