It can be useful in xPL to access symbols from binman, such as the
offset/position and size of a binman entry.
Place these binman symbols together at the end of the xPL binary for
ARMv8, similar to ARM and RISC-V.
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Simon Glass <simon.glass@canonical.com>
. = 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 = .;