Add an option to move 16K ota to vendor partition
For GRF devices, the system partition might be shared between different products using different kernels. Hence putting the 16K boot option OTA on system partition would not work for such project. Test: th Bug: 293313353 Bug: 328166454 Bug: 329808458 Change-Id: I2ba3ad4f28f3569c6b8e275849988328f9d73552
This commit is contained in:
parent
7a17cfd81a
commit
19805cb372
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