diff mbox series

ARM: ti: Increase the allocated size for MLO.raw

Message ID 20210419065027.5834-1-a-govindraju@ti.com
State Accepted
Commit fed603f868469a0d8f2548bdac137feead333c6b
Delegated to: Lokesh Vutla
Headers show
Series ARM: ti: Increase the allocated size for MLO.raw | expand

Commit Message

Aswath Govindraju April 19, 2021, 6:50 a.m. UTC
From: Faiz Abbas <faiz_abbas@ti.com>

MLO has increased to a size greater than the allocated
128 kB in dfu_alt_info_emmc and _mmc.

Therefore, double the allocated size for MLO.raw in
the default environment.

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 include/environment/ti/dfu.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Lokesh Vutla May 27, 2021, 11:14 a.m. UTC | #1
On Mon, 19 Apr 2021 12:20:27 +0530, Aswath Govindraju wrote:
> MLO has increased to a size greater than the allocated
> 128 kB in dfu_alt_info_emmc and _mmc.
> 
> Therefore, double the allocated size for MLO.raw in
> the default environment.
 
Applied to https://source.denx.de/u-boot/custodians/u-boot-ti.git for-rc, thanks!
[1/1] ARM: ti: Increase the allocated size for MLO.raw
      https://source.denx.de/u-boot/custodians/u-boot-ti/-/commit/fed603f868
 
--
Thanks and Regards,
Lokesh
diff mbox series

Patch

diff --git a/include/environment/ti/dfu.h b/include/environment/ti/dfu.h
index 720c3453af0e..3c90570107e4 100644
--- a/include/environment/ti/dfu.h
+++ b/include/environment/ti/dfu.h
@@ -13,7 +13,7 @@ 
 	"boot part 0 1;" \
 	"rootfs part 0 2;" \
 	"MLO fat 0 1;" \
-	"MLO.raw raw 0x100 0x100;" \
+	"MLO.raw raw 0x100 0x200;" \
 	"u-boot.img.raw raw 0x300 0x1000;" \
 	"u-env.raw raw 0x1300 0x200;" \
 	"spl-os-args.raw raw 0x1500 0x200;" \
@@ -29,7 +29,7 @@ 
 	"boot part 1 1;" \
 	"rootfs part 1 2;" \
 	"MLO fat 1 1;" \
-	"MLO.raw raw 0x100 0x100;" \
+	"MLO.raw raw 0x100 0x200;" \
 	"u-boot.img.raw raw 0x300 0x1000;" \
 	"u-env.raw raw 0x1300 0x200;" \
 	"spl-os-args.raw raw 0x1500 0x200;" \