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 <amit.pundir@linaro.org>
Change-Id: I89d74070893c14796e24cc8286fd794725b48717
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_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