Merge "Add an option to move 16K ota to vendor partition" into main am: 85c79a3a3a
Original change: https://android-review.googlesource.com/c/platform/build/+/3034113 Change-Id: I0f4c5d991493157befe9c847369bdfc4b21aab6b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
964c2928d9
1 changed files with 5 additions and 0 deletions
|
@ -1469,8 +1469,13 @@ $(BUILT_BOOT_OTA_PACKAGE_4K): $(OTA_FROM_RAW_IMG) $(INSTALLED_BOOTIMAGE_TARGET)
|
|||
boototapackage_4k: $(BUILT_BOOT_OTA_PACKAGE_4K)
|
||||
.PHONY: boototapackage_4k
|
||||
|
||||
ifeq ($(BOARD_16K_OTA_MOVE_VENDOR),true)
|
||||
$(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_4K),$(TARGET_OUT_VENDOR)/boot_otas/boot_ota_4k.zip))
|
||||
$(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_16K),$(TARGET_OUT_VENDOR)/boot_otas/boot_ota_16k.zip))
|
||||
else
|
||||
$(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_4K),$(TARGET_OUT)/boot_otas/boot_ota_4k.zip))
|
||||
$(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_16K),$(TARGET_OUT)/boot_otas/boot_ota_16k.zip))
|
||||
endif # BOARD_16K_OTA_MOVE_VENDOR == true
|
||||
|
||||
ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT)/boot_otas/boot_ota_4k.zip
|
||||
ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT)/boot_otas/boot_ota_16k.zip
|
||||
|
|
Loading…
Reference in a new issue