2006-10-04 22:46:15 +02:00
|
|
|
/*
|
|
|
|
* Memory map:
|
|
|
|
*
|
|
|
|
* _RAMBASE
|
|
|
|
* : data segment
|
|
|
|
* : bss segment
|
|
|
|
* : heap
|
|
|
|
* : stack
|
|
|
|
* _ROMBASE
|
2008-01-18 16:08:58 +01:00
|
|
|
* : coreboot text
|
2006-10-04 22:46:15 +02:00
|
|
|
* : 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)
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
. = _ROMBASE;
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
|
|
|
/DISCARD/ : {
|
|
|
|
*(.comment)
|
|
|
|
*(.note)
|
|
|
|
}
|
|
|
|
}
|