]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
microblaze: u-boot-spl.lds: Pass _image_binary_end
authorFabio Estevam <festevam@denx.de>
Sat, 1 Jul 2023 02:30:52 +0000 (23:30 -0300)
committerTom Rini <trini@konsulko.com>
Mon, 3 Jul 2023 14:20:13 +0000 (10:20 -0400)
Pass _image_binary_end to make a standard way to indicate the end
of the text section in SPL.

The motivation for this is to have a uniform way to handle
the SPL boundary checks.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Marek Vasut <marex@denx.de>
arch/microblaze/cpu/u-boot-spl.lds

index 4ac5a21524c5cefb814e21101d2cef2937588278..597095195caeff701a65b1843f333174490c7eb6 100644 (file)
@@ -54,6 +54,7 @@ SECTIONS
                __bss_end = .;
        }
        _end = . ;
+       _image_binary_end = .;
 }
 
 #if defined(CONFIG_SPL_MAX_FOOTPRINT)