diff options
| author | Fabio Estevam <[email protected]> | 2023-06-30 23:30:51 -0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-03 10:20:13 -0400 |
| commit | a1ddcf7cee55261a3c4a874440b3f152c73d203a (patch) | |
| tree | 2e2b4a8bd4f6997aa08c7ed28d36fcfae40dd373 | |
| parent | f5d98b01e10f05a823f3f5821c729198e56ebdbb (diff) | |
sunxi: 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 <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
| -rw-r--r-- | arch/arm/cpu/arm926ejs/sunxi/u-boot-spl.lds | 1 | ||||
| -rw-r--r-- | arch/arm/cpu/armv7/sunxi/u-boot-spl.lds | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/sunxi/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/sunxi/u-boot-spl.lds index c1087368115..cf65e8c4628 100644 --- a/arch/arm/cpu/arm926ejs/sunxi/u-boot-spl.lds +++ b/arch/arm/cpu/arm926ejs/sunxi/u-boot-spl.lds @@ -36,6 +36,7 @@ SECTIONS . = ALIGN(4); __image_copy_end = .; _end = .; + _image_binary_end = .; .bss : { diff --git a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds index 306a4ddf3cd..fb7a789b28b 100644 --- a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds +++ b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds @@ -45,6 +45,7 @@ SECTIONS . = ALIGN(4); __image_copy_end = .; _end = .; + _image_binary_end = .; .bss : { |
