diff options
| -rw-r--r-- | arch/arm/cpu/armv8/u-boot-spl.lds | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv8/u-boot-spl.lds b/arch/arm/cpu/armv8/u-boot-spl.lds index d9963846c4f..b732133ce76 100644 --- a/arch/arm/cpu/armv8/u-boot-spl.lds +++ b/arch/arm/cpu/armv8/u-boot-spl.lds @@ -55,6 +55,14 @@ SECTIONS . = ALIGN(8); } >.sram + .binman_sym_table : { + . = ALIGN(8); + __binman_sym_start = .; + KEEP(*(SORT(.binman_sym*))); + __binman_sym_end = .; + . = ALIGN(8); + } > .sram + __image_copy_end = .; _end = .; _image_binary_end = .; |
