diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2017-02-10 15:07:17 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-03-21 11:15:21 (GMT) |
commit | 4d451c00825ab7c4d25dc507d9a81e90ad3eb308 (patch) | |
tree | c22dd6d960d21711983dc6f2733664b13f73ca0d /arch/arm | |
parent | cf334edfbb78ddabbc22ac78b842eb2d8c10ff16 (diff) | |
download | u-boot-fsl-qoriq-4d451c00825ab7c4d25dc507d9a81e90ad3eb308.tar.xz |
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 <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm')
-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 8fec715..e9da2a9 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); |