Hung-Te Lin (hungte@chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2258
-gerrit
commit 8c30626a4716e767408926690988d8d570312b8d Author: Hung-Te Lin hungte@chromium.org Date: Fri Feb 1 15:27:39 2013 +0800
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 --- src/arch/armv7/coreboot_ram.ld | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/arch/armv7/coreboot_ram.ld b/src/arch/armv7/coreboot_ram.ld index 2f08d14..c69499c 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.*);