summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFaiz Abbas <faiz_abbas@ti.com>2021-04-19 12:20:27 +0530
committerLokesh Vutla <lokeshvutla@ti.com>2021-05-27 14:56:42 +0530
commitfed603f868469a0d8f2548bdac137feead333c6b (patch)
treeeffd96050c2ca0c86b1910f01b40ba8c0e72e001
parent7194a95d139ee6267642b8ae4932d836ce4c4a0e (diff)
downloadu-boot-fed603f868469a0d8f2548bdac137feead333c6b.tar.gz
u-boot-fed603f868469a0d8f2548bdac137feead333c6b.tar.xz
u-boot-fed603f868469a0d8f2548bdac137feead333c6b.zip
ARM: ti: Increase the allocated size for MLO.raw
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> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Link: https://lore.kernel.org/r/20210419065027.5834-1-a-govindraju@ti.com
-rw-r--r--include/environment/ti/dfu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/environment/ti/dfu.h b/include/environment/ti/dfu.h
index 720c3453af..3c90570107 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;" \