From: Fabio Estevam Date: Sat, 1 Jul 2023 02:30:52 +0000 (-0300) Subject: microblaze: u-boot-spl.lds: Pass _image_binary_end X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=1758b64f6df259542c6f662d18e3f13f79597585;p=u-boot.git microblaze: u-boot-spl.lds: Pass _image_binary_end 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 Reviewed-by: Marek Vasut --- diff --git a/arch/microblaze/cpu/u-boot-spl.lds b/arch/microblaze/cpu/u-boot-spl.lds index 4ac5a21524..597095195c 100644 --- a/arch/microblaze/cpu/u-boot-spl.lds +++ b/arch/microblaze/cpu/u-boot-spl.lds @@ -54,6 +54,7 @@ SECTIONS __bss_end = .; } _end = . ; + _image_binary_end = .; } #if defined(CONFIG_SPL_MAX_FOOTPRINT)