]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
SPL: do not use fix value for u-boot size
authorStefano Babic <sbabic@denx.de>
Thu, 23 Aug 2012 10:46:16 +0000 (12:46 +0200)
committerTom Rini <trini@ti.com>
Thu, 27 Sep 2012 16:49:59 +0000 (09:49 -0700)
If an u-boot image is not found, SPL thinks to load a bare
u-boot.bin image with a maximum size of 200KB.
Use CONFIG_SYS_MONITOR_LEN instead.

Signed-off-by: Stefan Roese <stefan.roese@gmail.com>
Signed-off-by: Stefano Babic <sbabic@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
common/spl/spl.c

index 3f41014023e18a2ad2ad7638f223ef767696fe78..70c374a49071ccaf1046a2ce50e031962fd21eb9 100644 (file)
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#ifndef CONFIG_SYS_MONITOR_LEN
+#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
+#endif
+
 u32 *boot_params_ptr = NULL;
 struct spl_image_info spl_image;
 
@@ -86,7 +90,7 @@ void spl_parse_image_header(const struct image_header *header)
                debug("mkimage signature not found - ih_magic = %x\n",
                        header->ih_magic);
                /* Let's assume U-Boot will not be more than 200 KB */
-               spl_image.size = 200 * 1024;
+               spl_image.size = CONFIG_SYS_MONITOR_LEN;
                spl_image.entry_point = CONFIG_SYS_TEXT_BASE;
                spl_image.load_addr = CONFIG_SYS_TEXT_BASE;
                spl_image.os = IH_OS_U_BOOT;