Due to the automatic nature of this update, I am self-acking. It worked in abuild. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3053 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
68 lines
1.0 KiB
Plaintext
68 lines
1.0 KiB
Plaintext
/*
|
|
* Memory map:
|
|
*
|
|
* _RAMBASE
|
|
* : data segment
|
|
* : bss segment
|
|
* : heap
|
|
* : stack
|
|
* _ROMBASE
|
|
* : coreboot text
|
|
* : readonly text
|
|
*/
|
|
/*
|
|
* Bootstrap code for the STPC Consumer
|
|
* Copyright (c) 1999 by Net Insight AB. All Rights Reserved.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Written by Johan Rydberg, based on work by Daniel Kahlin.
|
|
* Rewritten by Eric Biederman
|
|
*/
|
|
/*
|
|
* We use ELF as output format. So that we can
|
|
* debug the code in some form.
|
|
*/
|
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
|
OUTPUT_ARCH(i386)
|
|
|
|
/*
|
|
ENTRY(_start)
|
|
*/
|
|
|
|
TARGET(binary)
|
|
INPUT(coreboot_ram.rom)
|
|
SECTIONS
|
|
{
|
|
. = _ROMBASE;
|
|
|
|
.ram . : {
|
|
_ram = . ;
|
|
coreboot_ram.rom(*)
|
|
_eram = . ;
|
|
}
|
|
|
|
/* This section might be better named .setup */
|
|
.rom . : {
|
|
_rom = .;
|
|
*(.rom.text);
|
|
*(.rom.data);
|
|
*(.rom.data.*);
|
|
. = ALIGN(16);
|
|
_erom = .;
|
|
}
|
|
|
|
_lrom = LOADADDR(.rom);
|
|
_elrom = LOADADDR(.rom) + SIZEOF(.rom);
|
|
_iseg = _RAMBASE;
|
|
_eiseg = _iseg + SIZEOF(.ram);
|
|
_liseg = _ram;
|
|
_eliseg = _eram;
|
|
|
|
/DISCARD/ : {
|
|
*(.comment)
|
|
*(.note)
|
|
}
|
|
}
|