Skip to content
Snippets Groups Projects
Commit b93757ca authored by Simon Glass's avatar Simon Glass Committed by Bin Meng
Browse files

x86: Define the SPL image start


Define this symbol so that we can use binman symbols correctly.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent fbb0efdd
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,10 @@ SECTIONS ...@@ -17,7 +17,10 @@ SECTIONS
. = IMAGE_TEXT_BASE; /* Location of bootcode in flash */ . = IMAGE_TEXT_BASE; /* Location of bootcode in flash */
__text_start = .; __text_start = .;
.text : { *(.text*); } .text : {
__image_copy_start = .;
*(.text*);
}
. = ALIGN(4); . = ALIGN(4);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment