From d0ef387033c0f55dea4019475db06493e6fdb679 Mon Sep 17 00:00:00 2001 From: Hung-Te Lin Date: Fri, 1 Feb 2013 15:27:39 +0800 Subject: 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 Reviewed-on: http://review.coreboot.org/2258 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks --- src/arch/armv7/coreboot_ram.ld | 1 + 1 file changed, 1 insertion(+) (limited to 'src/arch') 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.*); -- cgit v1.2.3