diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-11-20 20:07:38 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-11-20 20:07:38 +0000 |
commit | 76c6c95c1ee3d231ee861afba8dbc341f4c02e07 (patch) | |
tree | bfd6b31b1488fe916b637bbd2c0a4c4ba151aa50 /targets/iwill/dk8_htx | |
parent | 8c558d35cbdc746db979ab9510a93a33d955a9d5 (diff) |
fix Config-abuild.lb for all targets that need a failover image and
don't have one (by fixing it for amd/serengeti_cheetah and copying the
same file to all other broken targets)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3763 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets/iwill/dk8_htx')
-rw-r--r-- | targets/iwill/dk8_htx/Config-abuild.lb | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/targets/iwill/dk8_htx/Config-abuild.lb b/targets/iwill/dk8_htx/Config-abuild.lb index 8332de0f18..322da5bfbd 100644 --- a/targets/iwill/dk8_htx/Config-abuild.lb +++ b/targets/iwill/dk8_htx/Config-abuild.lb @@ -1,25 +1,35 @@ -# This will make a target directory of ./iwill_dk8_htx +# This will make a target directory of ./VENDOR_MAINBOARD -target iwill_dk8_htx -mainboard iwill/dk8_htx +target VENDOR_MAINBOARD +mainboard VENDOR/MAINBOARD -option CC="gcc -m32" -option CROSS_COMPILE="" -option HOSTCC="gcc" +option CC="CROSSCC" +option CROSS_COMPILE="CROSS_PREFIX" +option HOSTCC="CROSS_HOSTCC" -option CONFIG_COMPRESSED_PAYLOAD_LZMA=1 +__COMPRESSION__ romimage "normal" + option USE_FAILOVER_IMAGE=0 option USE_FALLBACK_IMAGE=0 - option ROM_IMAGE_SIZE=0x17000 + option ROM_IMAGE_SIZE=0x20000 option COREBOOT_EXTRA_VERSION=".0-normal" payload __PAYLOAD__ end -romimage "fallback" +romimage "fallback" + option USE_FAILOVER_IMAGE=0 option USE_FALLBACK_IMAGE=1 - option ROM_IMAGE_SIZE=0x17000 + option ROM_IMAGE_SIZE=0x20000 option COREBOOT_EXTRA_VERSION=".0-fallback" payload __PAYLOAD__ end -buildrom ./coreboot.rom ROM_SIZE "normal" "fallback" + +romimage "failover" + option USE_FAILOVER_IMAGE=1 + option USE_FALLBACK_IMAGE=0 + option ROM_IMAGE_SIZE=FAILOVER_SIZE + option XIP_ROM_SIZE=FAILOVER_SIZE +end + +buildrom ./coreboot.rom ROM_SIZE "normal" "fallback" "failover" |