diff options
| author | 2024-11-19 21:33:10 +0000 | |
|---|---|---|
| committer | 2024-11-19 21:53:25 +0000 | |
| commit | 54612e3db617e48550a8f26031e7485a782721eb (patch) | |
| tree | cb7abedad487e7c7de39c4424799a347741d7edd | |
| parent | 2527aad98070242419323bc2dd33ac0615b627b5 (diff) | |
Export correct boot image related variable to Soong
Correct name of the variable is BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE, instead of
BOARD_INIT_BOOTIMAGE_PARTITION_SIZE.
Test: m nothing
Bug: 377563630
Change-Id: I160a9f6314df415ca79ed32062aadbe9a64e7f93
| -rw-r--r-- | core/soong_config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/soong_config.mk b/core/soong_config.mk index 2f69d0604c..32ca660fac 100644 --- a/core/soong_config.mk +++ b/core/soong_config.mk @@ -437,7 +437,7 @@ $(call add_json_map, PartitionVarsForSoongMigrationOnlyDoNotUse) $(call add_json_str, BoardPrebuiltBootimage, $(BOARD_PREBUILT_BOOT_IMAGE)) $(call add_json_str, BoardPrebuiltInitBootimage, $(BOARD_PREBUILT_INIT_BOOT_IMAGE)) $(call add_json_str, BoardBootimagePartitionSize, $(BOARD_BOOTIMAGE_PARTITION_SIZE)) - $(call add_json_str, BoardInitBootimagePartitionSize, $(BOARD_INIT_BOOTIMAGE_PARTITION_SIZE)) + $(call add_json_str, BoardInitBootimagePartitionSize, $(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) $(call add_json_str, BoardBootHeaderVersion, $(BOARD_BOOT_HEADER_VERSION)) $(call add_json_str, TargetKernelPath, $(TARGET_KERNEL_PATH)) $(call add_json_bool, BoardUsesGenericKernelImage, $(BOARD_USES_GENERIC_KERNEL_IMAGE)) |