From 1758b64f6df259542c6f662d18e3f13f79597585 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Fri, 30 Jun 2023 23:30:52 -0300 Subject: [PATCH] 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 --- arch/microblaze/cpu/u-boot-spl.lds | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.5