[coreboot] New patch to review for coreboot: 04a409a armv7: Fix entry point in ram stage.

Hung-Te Lin (hungte@chromium.org) gerrit at coreboot.org
Fri Feb 1 08:30:14 CET 2013


Hung-Te Lin (hungte at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2258

-gerrit

commit 04a409a7834d2a859676c7e70339e6cccf1ba9f7
Author: Hung-Te Lin <hungte at chromium.org>
Date:   Fri Feb 1 15:27:39 2013 +0800

    armv7: Fix entry point in ram stage.
    
    Eliminated the warning message:
     ld: warning: cannot find entry symbol _start; defaulting to 040000000
    
    The "_start" from c_start.S was deprecated so we need to define entry
    point again in link description file.
    
    Change-Id: I174428faa2e7f08cd91fe96a53e6efea9dc3634e
    Signed-off-by: Hung-Te Lin <hungte at 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.*);



More information about the coreboot mailing list