Merge "Use bsdiff to generate recovery-from-boot.p for system-root-image."

This commit is contained in:
Treehugger Robot 2018-03-20 00:00:34 +00:00 committed by Gerrit Code Review
commit ad29fe419e
2 changed files with 52 additions and 30 deletions

View File

@ -1260,19 +1260,23 @@ else
recovery_wipe := recovery_wipe :=
endif endif
# Prior to A/B update, we used to have: # Traditionally with non-A/B OTA we have:
# boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img.
# recovery-resource.dat is needed only if we carry a patch of the boot and # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images
# recovery images and invoke install-recovery.sh on the first boot post an # and invoke install-recovery.sh on the first boot post an OTA update.
# OTA update.
# #
# We no longer need that if one of the following conditions holds: # We no longer need that if one of the following conditions holds:
# a) We carry a full copy of the recovery image # a) We carry a full copy of the recovery image - no patching needed
# (BOARD_USES_FULL_RECOVERY_IMAGE = true); # (BOARD_USES_FULL_RECOVERY_IMAGE = true);
# b) We build a single image that contains boot and recovery both # b) We build a single image that contains boot and recovery both - no recovery image to install
# (BOARD_USES_RECOVERY_AS_BOOT = true). # (BOARD_USES_RECOVERY_AS_BOOT = true);
# c) We build the root into system image - not needing the resource file as we do bsdiff
# (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true).
# Note that condition b) implies condition c), because of the earlier check in this file:
# "BOARD_USES_RECOVERY_AS_BOOT = true must have BOARD_BUILD_SYSTEM_ROOT_IMAGE = true" (not vice
# versa though).
ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT))) ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_BUILD_SYSTEM_ROOT_IMAGE)))
# Named '.dat' so we don't attempt to use imgdiff for patching it. # Named '.dat' so we don't attempt to use imgdiff for patching it.
RECOVERY_RESOURCE_ZIP := $(TARGET_OUT)/etc/recovery-resource.dat RECOVERY_RESOURCE_ZIP := $(TARGET_OUT)/etc/recovery-resource.dat
else else
@ -1559,15 +1563,21 @@ SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT)
# image size check calculation. # image size check calculation.
ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),)
ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true)
ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true)
diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff
else
diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff
endif
intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch)
RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p
$(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \ $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool)
$(INSTALLED_BOOTIMAGE_TARGET) \ $(RECOVERY_FROM_BOOT_PATCH): \
$(HOST_OUT_EXECUTABLES)/imgdiff \ $(INSTALLED_RECOVERYIMAGE_TARGET) \
$(HOST_OUT_EXECUTABLES)/bsdiff $(INSTALLED_BOOTIMAGE_TARGET) \
$(diff_tool)
@echo "Construct recovery from boot" @echo "Construct recovery from boot"
mkdir -p $(dir $@) mkdir -p $(dir $@)
PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ $(PRIVATE_DIFF_TOOL) $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@
else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true
RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET)
endif endif

View File

@ -1828,35 +1828,47 @@ def ExtractPublicKey(cert):
def MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img, def MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img,
info_dict=None): info_dict=None):
"""Generate a binary patch that creates the recovery image starting """Generates the recovery-from-boot patch and writes the script to output.
with the boot image. (Most of the space in these images is just the
kernel, which is identical for the two, so the resulting patch
should be efficient.) Add it to the output zip, along with a shell
script that is run from init.rc on first boot to actually do the
patching and install the new recovery image.
recovery_img and boot_img should be File objects for the Most of the space in the boot and recovery images is just the kernel, which is
corresponding images. info should be the dictionary returned by identical for the two, so the resulting patch should be efficient. Add it to
common.LoadInfoDict() on the input target_files. the output zip, along with a shell script that is run from init.rc on first
boot to actually do the patching and install the new recovery image.
Args:
input_dir: The top-level input directory of the target-files.zip.
output_sink: The callback function that writes the result.
recovery_img: File object for the recovery image.
boot_img: File objects for the boot image.
info_dict: A dict returned by common.LoadInfoDict() on the input
target_files. Will use OPTIONS.info_dict if None has been given.
""" """
if info_dict is None: if info_dict is None:
info_dict = OPTIONS.info_dict info_dict = OPTIONS.info_dict
full_recovery_image = info_dict.get("full_recovery_image", None) == "true" full_recovery_image = info_dict.get("full_recovery_image") == "true"
if full_recovery_image: if full_recovery_image:
output_sink("etc/recovery.img", recovery_img.data) output_sink("etc/recovery.img", recovery_img.data)
else: else:
diff_program = ["imgdiff"] system_root_image = info_dict.get("system_root_image") == "true"
path = os.path.join(input_dir, "SYSTEM", "etc", "recovery-resource.dat") path = os.path.join(input_dir, "SYSTEM", "etc", "recovery-resource.dat")
if os.path.exists(path): # With system-root-image, boot and recovery images will have mismatching
diff_program.append("-b") # entries (only recovery has the ramdisk entry) (Bug: 72731506). Use bsdiff
diff_program.append(path) # to handle such a case.
bonus_args = "-b /system/etc/recovery-resource.dat" if system_root_image:
else: diff_program = ["bsdiff"]
bonus_args = "" bonus_args = ""
assert not os.path.exists(path)
else:
diff_program = ["imgdiff"]
if os.path.exists(path):
diff_program.append("-b")
diff_program.append(path)
bonus_args = "-b /system/etc/recovery-resource.dat"
else:
bonus_args = ""
d = Difference(recovery_img, boot_img, diff_program=diff_program) d = Difference(recovery_img, boot_img, diff_program=diff_program)
_, _, patch = d.ComputePatch() _, _, patch = d.ComputePatch()