It's basically done with the following script and some manual fixup: VARS=`grep ^define src/config/Options.lb | cut -f2 -d\ | grep -v ^CONFIG | grep -v ^COREBOOT |grep -v ^CC` for VAR in $VARS; do find . -name .svn -prune -o -type f -exec perl -pi -e "s/(^|[^0-9a-zA-Z_]+)$VAR($|[^0-9a-zA-Z_]+)/\1CONFIG_$VAR\2/g" {} \; done Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4381 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
60 lines
938 B
Plaintext
60 lines
938 B
Plaintext
/*
|
|
* Memory map:
|
|
*
|
|
* CONFIG_RAMBASE
|
|
* : data segment
|
|
* : bss segment
|
|
* : heap
|
|
* : stack
|
|
* CONFIG_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)
|
|
SECTIONS
|
|
{
|
|
. = CONFIG_ROMBASE;
|
|
|
|
/* This section might be better named .setup */
|
|
.rom . : {
|
|
_rom = .;
|
|
*(.rom.text);
|
|
*(.rom.data);
|
|
*(.rodata.*);
|
|
*(.rom.data.*);
|
|
. = ALIGN(16);
|
|
_erom = .;
|
|
}
|
|
|
|
_lrom = LOADADDR(.rom);
|
|
_elrom = LOADADDR(.rom) + SIZEOF(.rom);
|
|
|
|
/DISCARD/ : {
|
|
*(.comment)
|
|
*(.comment.*)
|
|
*(.note)
|
|
*(.note.*)
|
|
}
|
|
}
|