diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-03-30 21:52:05 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-03-30 21:52:05 +0000 |
commit | cca626817dc88bfaec8b6ebf787f5f57006fe0cb (patch) | |
tree | a69b43a9ae39de47b4cd6da7fe81a8e3488b03fe /src/arch/i386/init/ldscript_apc.lb | |
parent | c269d237f93d7867c7f4cad9a4d619b56f4a3d81 (diff) |
get coreboot_ap memory training in cache mechanism in place. Didn't work since
Kconfig (needs more patches to ap_romstage.c but this is a first step)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5335 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/init/ldscript_apc.lb')
-rw-r--r-- | src/arch/i386/init/ldscript_apc.lb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/arch/i386/init/ldscript_apc.lb b/src/arch/i386/init/ldscript_apc.lb index 2c8cb84e63..1e79c0aa6f 100644 --- a/src/arch/i386/init/ldscript_apc.lb +++ b/src/arch/i386/init/ldscript_apc.lb @@ -1,9 +1,12 @@ -INPUT(coreboot_apc.rom) +/* INPUT(coreboot_ap.rom)*/ +INCLUDE "ldoptions" SECTIONS { .apcrom . : { _apcrom = .; - coreboot_apc.rom(*) + *(.text) + *(.rodata) + *(.rodata.*) _eapcrom = .; } _iseg_apc = CONFIG_DCACHE_RAM_BASE; |