a7c92a6dc4
I think that since the directory specifies the architecture and the board, it is redundant information to name it something else, and it makes it more difficult to automate the build process (buildrom). Signed-off-by: Myles Watson <myles@pel.cs.byu.edu> Acked-by: Jordan Crouse <jordan.crouse@amd.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3090 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
45 lines
1,008 B
Text
45 lines
1,008 B
Text
#
|
|
# Sample config file for Newisys Khepri systems
|
|
#
|
|
|
|
# Target directory for khepri build
|
|
target khepri
|
|
|
|
mainboard newisys/khepri
|
|
|
|
# set target C compiler to 32bit gcc.
|
|
option CC="gcc -m32"
|
|
|
|
# Configuration options.
|
|
|
|
option MAXIMUM_CONSOLE_LOGLEVEL=8
|
|
option DEFAULT_CONSOLE_LOGLEVEL=8
|
|
option CONFIG_CONSOLE_SERIAL8250=1
|
|
|
|
# Size of the image. Khepri comes with 512k per default.
|
|
option ROM_SIZE=512*1024
|
|
|
|
option HAVE_OPTION_TABLE=1
|
|
option CONFIG_ROM_PAYLOAD=1
|
|
option HAVE_FALLBACK_BOOT=1
|
|
|
|
option FALLBACK_SIZE=131072
|
|
|
|
## Coreboot C code runs at this location in RAM
|
|
option _RAMBASE=0x00004000
|
|
|
|
romimage "normal"
|
|
option USE_FALLBACK_IMAGE=0
|
|
option ROM_IMAGE_SIZE=0x20000
|
|
option COREBOOT_EXTRA_VERSION="-Khepri-Normal"
|
|
payload ../../../payloads/tg3--ide_disk.zelf
|
|
end
|
|
|
|
romimage "fallback"
|
|
option USE_FALLBACK_IMAGE=1
|
|
option ROM_IMAGE_SIZE=0x20000
|
|
option COREBOOT_EXTRA_VERSION="-Khepri-Fallback"
|
|
payload ../../../payloads/tg3--ide_disk.zelf
|
|
end
|
|
|
|
buildrom ./coreboot.rom ROM_SIZE "normal" "fallback"
|