From: Simon Glass Date: Sat, 7 Dec 2019 04:42:00 +0000 (-0700) Subject: x86: Define the SPL image start X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=b93757caa122fc52bccb573df1c16c478eef6b2f;p=u-boot.git x86: Define the SPL image start Define this symbol so that we can use binman symbols correctly. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds index c1e9bfbf66..e6c22895b3 100644 --- a/arch/x86/cpu/u-boot-spl.lds +++ b/arch/x86/cpu/u-boot-spl.lds @@ -17,7 +17,10 @@ SECTIONS . = IMAGE_TEXT_BASE; /* Location of bootcode in flash */ __text_start = .; - .text : { *(.text*); } + .text : { + __image_copy_start = .; + *(.text*); + } . = ALIGN(4);