diff options
| author | Lokesh Vutla <[email protected]> | 2017-02-10 20:37:17 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-03-21 07:15:21 -0400 |
| commit | 4d451c00825ab7c4d25dc507d9a81e90ad3eb308 (patch) | |
| tree | c22dd6d960d21711983dc6f2733664b13f73ca0d | |
| parent | cf334edfbb78ddabbc22ac78b842eb2d8c10ff16 (diff) | |
ARM: OMAP2+: define _image_binary_end to fix SPL_OF_CONTROL
To make SPL_OF_CONTROL work on OMAP2+ SoCs, _image_binary_end must be
defined in the linker script along with CONFIG_SPL_SEPARATE_BSS.
Reviewed-by: Tom Rini <[email protected]>
Signed-off-by: Lokesh Vutla <[email protected]>
| -rw-r--r-- | arch/arm/mach-omap2/u-boot-spl.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/u-boot-spl.lds b/arch/arm/mach-omap2/u-boot-spl.lds index 8fec715ca56..e9da2a9dd18 100644 --- a/arch/arm/mach-omap2/u-boot-spl.lds +++ b/arch/arm/mach-omap2/u-boot-spl.lds @@ -46,6 +46,8 @@ SECTIONS *(.__end) } + _image_binary_end = .; + .bss : { . = ALIGN(4); |
