aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Estevam2023-06-30 23:30:52 -0300
committerTom Rini2023-07-03 10:20:13 -0400
commit1758b64f6df259542c6f662d18e3f13f79597585 (patch)
treec4be5cbeedaa6ed5ec65106307b9eb0a5a5db7d3
parenta1ddcf7cee55261a3c4a874440b3f152c73d203a (diff)
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 <festevam@denx.de> Reviewed-by: Marek Vasut <marex@denx.de>
-rw-r--r--arch/microblaze/cpu/u-boot-spl.lds1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/microblaze/cpu/u-boot-spl.lds b/arch/microblaze/cpu/u-boot-spl.lds
index 4ac5a21524c..597095195ca 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)