2583dd2095
fam10 and h8dmr k8 targets. Many, many thanks to Marc, Myles, Patrick and Stepan for all their help with this, and to Arne for doing the s2912 fam10 port. Build and boot tested. Abuild tested. There are a number of outstanding issues and caveats - see src/mainboard/supermicro/h8dmr_fam10/README. Signed-off-by: Ward Vandewege <ward@gnu.org> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4693 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
30 lines
678 B
Text
30 lines
678 B
Text
# This will make a target directory of ./VENDOR_MAINBOARD
|
|
|
|
target VENDOR_MAINBOARD
|
|
mainboard VENDOR/MAINBOARD
|
|
|
|
option CC="CROSSCC"
|
|
option CONFIG_CROSS_COMPILE="CROSS_PREFIX"
|
|
option HOSTCC="CROSS_HOSTCC"
|
|
|
|
__COMPRESSION__
|
|
__LOGLEVEL__
|
|
|
|
romimage "normal"
|
|
option COREBOOT_EXTRA_VERSION=".0-normal"
|
|
payload __PAYLOAD__
|
|
end
|
|
|
|
romimage "fallback"
|
|
option CONFIG_USE_FALLBACK_IMAGE=1
|
|
option COREBOOT_EXTRA_VERSION=".0-fallback"
|
|
payload __PAYLOAD__
|
|
end
|
|
|
|
romimage "failover"
|
|
option CONFIG_USE_FAILOVER_IMAGE=1
|
|
option CONFIG_ROM_IMAGE_SIZE=CONFIG_FAILOVER_SIZE
|
|
option COREBOOT_EXTRA_VERSION=".0-failover"
|
|
end
|
|
|
|
buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal" "fallback" "failover"
|