]> Git Repo - J-u-boot.git/commitdiff
arm: ti: boot: Fix U-Boot environment partition address
authorSam Protsenko <[email protected]>
Thu, 15 Nov 2018 20:26:17 +0000 (22:26 +0200)
committerTom Rini <[email protected]>
Tue, 27 Nov 2018 03:52:11 +0000 (22:52 -0500)
Recent removal of obsolete partition led to shifting of starting address
of "reserved" partition (which reflects U-Boot environment). Fix its
start address to keep it in sync with ENV_OFFSET and DFU environment.

This patch also provides fixed start address for "reserved" partition,
so that we can track when it's shifted next time.

While at it, move it before "misc" partition to keep all Android
partitions together.

Signed-off-by: Sam Protsenko <[email protected]>
Acked-By: Praneeth Bajjuri <[email protected]>
include/environment/ti/boot.h

index 3c9c87f21b1cc005de046541a6cd6b5d08d068db..5891009a5a251432cfd8e2ffebc91f51c4077e50 100644 (file)
@@ -34,9 +34,9 @@
        "partitions_android=" \
        "uuid_disk=${uuid_gpt_disk};" \
        "name=xloader,start=128K,size=256K,uuid=${uuid_gpt_xloader};" \
-       "name=bootloader,size=1792K,uuid=${uuid_gpt_bootloader};" \
+       "name=bootloader,size=2048K,uuid=${uuid_gpt_bootloader};" \
+       "name=reserved,start=2432K,size=256K,uuid=${uuid_gpt_reserved};" \
        "name=misc,size=128K,uuid=${uuid_gpt_misc};" \
-       "name=reserved,size=256K,uuid=${uuid_gpt_reserved};" \
        "name=efs,size=16M,uuid=${uuid_gpt_efs};" \
        "name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \
        "name=recovery,size=40M,uuid=${uuid_gpt_recovery};" \
This page took 0.035252 seconds and 4 git commands to generate.