diff options
author | Hung-Te Lin <hungte@chromium.org> | 2013-02-01 15:27:39 +0800 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2013-02-01 09:11:10 +0100 |
commit | d0ef387033c0f55dea4019475db06493e6fdb679 (patch) | |
tree | c8b0445cfd5290c97b6970372198014e925c7776 /src | |
parent | 332795cc5951c6d65badd2bbf3c79f6b63dbdbc2 (diff) |
armv7: Fix entry point in ram stage.
Eliminate the warning message:
ld: warning: cannot find entry symbol _start; defaulting to 040000000
The "_start" from c_start.S is deprecated so we need to define entry
point again in link description file.
Change-Id: I174428faa2e7f08cd91fe96a53e6efea9dc3634e
Signed-off-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-on: http://review.coreboot.org/2258
Tested-by: build bot (Jenkins)
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/armv7/coreboot_ram.ld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/armv7/coreboot_ram.ld b/src/arch/armv7/coreboot_ram.ld index 2f08d1434d..c69499c362 100644 --- a/src/arch/armv7/coreboot_ram.ld +++ b/src/arch/armv7/coreboot_ram.ld @@ -32,6 +32,7 @@ SECTIONS */ .text : { _text = .; + _start = .; *(.text.stage_entry.armv7); *(.text); *(.text.*); |