From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Thu, 10 Oct 2019 15:09:06 +0800 Subject: [U-Boot] [PATCH 078/126] x86: Define the SPL image start In-Reply-To: <20190925145750.200592-79-sjg@chromium.org> References: <20190925145750.200592-1-sjg@chromium.org> <20190925145750.200592-79-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On Wed, Sep 25, 2019 at 10:59 PM Simon Glass wrote: > > Define this symbol so that we can use binman symbols correctly. > > Signed-off-by: Simon Glass > --- > > arch/x86/cpu/u-boot-spl.lds | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds > index c1e9bfbf66f..e6c22895b35 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 = .; I see this symbol is currently used in ARM. What's the purpose for x86? > + *(.text*); > + } > > . = ALIGN(4); > > -- Regards, Bin