Fix broken compilation. As CBFS is now enabled by default,

CONFIG_FALLBACK_SIZE should be equal to CONFIG_ROM_IMAGE_SIZE and not
CONFIG_ROM_SIZE

Signed-off-by: Arnaud Maye <arnaud.maye@4dsp.com>
Acked-by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4605 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Arnaud Maye 2009-08-28 10:17:03 +00:00 committed by Patrick Georgi
parent fa1eddac43
commit d5f9f0024d
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ option CONFIG_ROM_IMAGE_SIZE = 128 * 1024
## CONFIG_FALLBACK_SIZE is the amount of the ROM the complete fallback image ## CONFIG_FALLBACK_SIZE is the amount of the ROM the complete fallback image
## (including payload) will use ## (including payload) will use
option CONFIG_FALLBACK_SIZE = CONFIG_ROM_SIZE option CONFIG_FALLBACK_SIZE = CONFIG_ROM_IMAGE_SIZE
romimage "fallback" romimage "fallback"
option CONFIG_USE_FALLBACK_IMAGE=1 option CONFIG_USE_FALLBACK_IMAGE=1