summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-03-17 15:15:15 +0000
committerStefan Reinauer <stepan@openbios.org>2009-03-17 15:15:15 +0000
commitb743885b43cf735a54da6ac1eddcf81c84f28522 (patch)
treed6804c0d8b2f5a9264120e3ac1c0ffcfa8399b8c
parent764fe40f098d010d8d41a549a2560be3b0814d42 (diff)
downloadcoreboot-b743885b43cf735a54da6ac1eddcf81c84f28522.tar.xz
Don't know if this is the correct fix, but it fixes compilation of the PPC
targets. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4014 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/arch/ppc/init/ldscript.lb12
-rw-r--r--src/config/coreboot_ram.ld11
2 files changed, 23 insertions, 0 deletions
diff --git a/src/arch/ppc/init/ldscript.lb b/src/arch/ppc/init/ldscript.lb
index 4c48087237..a81d9b9bb8 100644
--- a/src/arch/ppc/init/ldscript.lb
+++ b/src/arch/ppc/init/ldscript.lb
@@ -79,6 +79,18 @@ SECTIONS
_eram = . ;
}
+ .sdata : {
+ _SDA_BASE_ = .;
+ *(.sdata)
+ }
+
+ .sdata2 : {
+ _SDA2_BASE_ = .;
+ *(.sdata2)
+ }
+
+
+
/*
* Absolute location of where coreboot will be relocated in RAM.
*/
diff --git a/src/config/coreboot_ram.ld b/src/config/coreboot_ram.ld
index 2ee9ba9c55..4b41adb30d 100644
--- a/src/config/coreboot_ram.ld
+++ b/src/config/coreboot_ram.ld
@@ -75,6 +75,17 @@ SECTIONS
*(.data)
_edata = .;
}
+
+ .sdata : {
+ _SDA_BASE_ = .;
+ *(.sdata)
+ }
+
+ .sdata2 : {
+ _SDA2_BASE_ = .;
+ *(.sdata2)
+ }
+
/*
* bss does not contain data, it is just a space that should be zero
* initialized on startup. (typically uninitialized global variables)