0867062412
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
31 lines
816 B
Text
31 lines
816 B
Text
# Sample config file for Motorola Sandpoint X3 Demo Board with
|
|
# the Altimus mpc7410 PMC card
|
|
# This will make a target directory of ./sandpoint
|
|
|
|
target sandpoint
|
|
|
|
mainboard motorola/sandpointx3_altimus_mpc7410
|
|
|
|
# Sandpoint Demo Board
|
|
romimage "normal"
|
|
## Base of ROM
|
|
option CONFIG_ROMBASE=0xfff00000
|
|
|
|
## Sandpoint reset vector
|
|
option CONFIG_RESET=CONFIG_ROMBASE+0x100
|
|
|
|
## Exception vectors (other than reset vector)
|
|
option CONFIG_EXCEPTION_VECTORS=CONFIG_RESET+0x100
|
|
|
|
## Start of coreboot in the boot rom
|
|
## = CONFIG_RESET + exeception vector table size
|
|
option CONFIG_ROMSTART=CONFIG_RESET+0x3100
|
|
|
|
## Coreboot C code runs at this location in RAM
|
|
option CONFIG_RAMBASE=0x00100000
|
|
option CONFIG_RAMSTART=0x00100000
|
|
|
|
option CONFIG_SANDPOINT_ALTIMUS=1
|
|
end
|
|
|
|
buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal"
|