From 7d3a1ac4e582e2eebb13c356f696b84409ae6620 Mon Sep 17 00:00:00 2001 From: Amit Pundir Date: Wed, 7 Oct 2020 18:26:24 +0530 Subject: db845c: BoardConfig: Correct the super partition size Super partition size is not set correctly. I rounded off to 10G during initial porting days. Reset it to the correct size mentioned in the bootloader ptable. It fixes the following warning we see during adb remount: [liblp]Device size does not match (got 12437225472, expected 10737418240) [liblp]Block device super size mismatch (expected10737418240, got 12437225472) Signed-off-by: Amit Pundir Change-Id: I89d74070893c14796e24cc8286fd794725b48717 --- db845c/BoardConfig.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'db845c') diff --git a/db845c/BoardConfig.mk b/db845c/BoardConfig.mk index 816c465..9d31f97 100644 --- a/db845c/BoardConfig.mk +++ b/db845c/BoardConfig.mk @@ -19,7 +19,7 @@ BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 #64M BOARD_USERDATAIMAGE_PARTITION_SIZE := 21474836480 #20G BOARD_FLASH_BLOCK_SIZE := 512 # Super partition -BOARD_SUPER_PARTITION_SIZE := 10737418240 #10G -BOARD_DB_DYNAMIC_PARTITIONS_SIZE := 10737418240 #10G +BOARD_SUPER_PARTITION_SIZE := 12437225472 +BOARD_DB_DYNAMIC_PARTITIONS_SIZE := 12437225472 BOARD_SUPER_PARTITION_METADATA_DEVICE := super BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE := true -- cgit v1.2.3