Paul Menzel (paulepan...@users.sourceforge.net) just uploaded a new patch set 
to gerrit, which you can find at http://review.coreboot.org/2560

-gerrit

commit 3d46566d55531cee167d7171adf41d0f21a9fb2b
Author: Ronald G. Minnich <rminn...@gmail.com>
Date:   Thu Feb 28 15:21:41 2013 -0600

    ARM: Fix the ldscripts so that exit/enter stage work correctly.
    
    Remove the spurious creation of a start symbol, and use the
    stage_entry symbol directly.
    
    Change-Id: Ia62d5c056ac8b20c8ffdb78bff3d306065b6c45f
    Signed-off-by: Ronald G. Minnich <rminn...@gmail.com>
---
 src/arch/armv7/coreboot_ram.ld | 2 +-
 src/arch/armv7/romstage.ld     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/arch/armv7/coreboot_ram.ld b/src/arch/armv7/coreboot_ram.ld
index 2edf8e3..c2ead7a 100644
--- a/src/arch/armv7/coreboot_ram.ld
+++ b/src/arch/armv7/coreboot_ram.ld
@@ -22,7 +22,7 @@
 /* We use ELF as output format. So that we can debug the code in some form. */
 INCLUDE ldoptions
 
-ENTRY(_start)
+ENTRY(stage_entry)
 
 SECTIONS
 {
diff --git a/src/arch/armv7/romstage.ld b/src/arch/armv7/romstage.ld
index 6728fb1..568ac1a 100644
--- a/src/arch/armv7/romstage.ld
+++ b/src/arch/armv7/romstage.ld
@@ -28,7 +28,7 @@
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
 OUTPUT_ARCH(arm)
 
-ENTRY(_start)
+ENTRY(stage_entry)
 
 SECTIONS
 {

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to