diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-11-25 00:13:51 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-11-25 00:13:51 +0000 |
commit | 13f7a00200bb14b98b9cac6e73866a69922ae8a4 (patch) | |
tree | c76757b8c26ff6b00831da4c958ab5e120024699 /src/mainboard | |
parent | cc454483b427c0e197af911af6bdbd5a04b22b7a (diff) |
Fix abuild for ASUS MEW-AM.
You cannot set 'default ROM_SIZE = 0' in Options.lb (and override it in
targets/*/Config.lb). While it'll work for manual builds, abuild doesn't
cope with that very well. So set a valid value in Options.lb, too.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2981 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/asus/mew-am/Options.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/asus/mew-am/Options.lb b/src/mainboard/asus/mew-am/Options.lb index 35536bf539..bc40674532 100644 --- a/src/mainboard/asus/mew-am/Options.lb +++ b/src/mainboard/asus/mew-am/Options.lb @@ -65,7 +65,7 @@ uses MAINBOARD_PART_NUMBER uses CONFIG_CONSOLE_VGA uses CONFIG_PCI_ROM_RUN -default ROM_SIZE = 0 # Override this in targets/*/Config.lb. +default ROM_SIZE = 512 * 1024 # Override this in targets/*/Config.lb. default HAVE_FALLBACK_BOOT = 1 default HAVE_MP_TABLE = 0 default HAVE_HARD_RESET = 0 |