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/amd/serengeti_cheetah | |
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/amd/serengeti_cheetah')
-rw-r--r-- | targets/amd/serengeti_cheetah/Config-abuild.lb | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/targets/amd/serengeti_cheetah/Config-abuild.lb b/targets/amd/serengeti_cheetah/Config-abuild.lb index 57bc20faf6..322da5bfbd 100644 --- a/targets/amd/serengeti_cheetah/Config-abuild.lb +++ b/targets/amd/serengeti_cheetah/Config-abuild.lb @@ -9,19 +9,27 @@ option HOSTCC="CROSS_HOSTCC" __COMPRESSION__ -option ROM_SIZE=512*1024 - romimage "normal" + option USE_FAILOVER_IMAGE=0 option USE_FALLBACK_IMAGE=0 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=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" |