From: Aswath Govindraju Date: Thu, 26 Aug 2021 15:58:58 +0000 (+0530) Subject: environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt... X-Git-Tag: v2021.10~27^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7026b88844f3b3313c390cd57a119164319377a4;p=platform%2Fkernel%2Fu-boot.git environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram The size of u-boot.img is above 1MB and that of tispl.bin is close to 1MB, in case of j721e. Therefore, increase the sizes allocated for tispl.bin and u-boot.img to 2 MB and 4 MB respectively, in dfu_alt_info_ram environment variable. Signed-off-by: Aswath Govindraju --- diff --git a/include/environment/ti/k3_dfu.h b/include/environment/ti/k3_dfu.h index 2f503b8..a16a3ad 100644 --- a/include/environment/ti/k3_dfu.h +++ b/include/environment/ti/k3_dfu.h @@ -40,7 +40,7 @@ #define DFU_ALT_INFO_RAM \ "dfu_alt_info_ram=" \ - "tispl.bin ram 0x80080000 0x100000;" \ - "u-boot.img ram 0x81000000 0x100000\0" \ + "tispl.bin ram 0x80080000 0x200000;" \ + "u-boot.img ram 0x81000000 0x400000\0" \ #endif /* __TI_DFU_H */