diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-01-28 22:25:49 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-01-28 22:25:49 +0000 |
commit | 24ddfd4b7dd521d5acf52fb35f197ecacc86991d (patch) | |
tree | bcf9773d7638fabdeb9e389fe560a0cc945dd0ea | |
parent | d9d5e345c0caa6c41be884e457da901293e13a15 (diff) |
Fix manual build of the ASUS A8N-E (trivial).
Without this patch the manual newconfig (not kconfig) build would fail with:
#error "CONFIG_XIP_ROM_BASE is not a multiple of CONFIG_XIP_ROM_SIZE"
I tested an image on hardware, it starts booting now, but doesn't fully
succeed as there are other issues (I'm investigating).
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@5061 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | targets/asus/a8n_e/Config.lb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/targets/asus/a8n_e/Config.lb b/targets/asus/a8n_e/Config.lb index d805784ca4..877bbd896a 100644 --- a/targets/asus/a8n_e/Config.lb +++ b/targets/asus/a8n_e/Config.lb @@ -25,8 +25,6 @@ mainboard asus/a8n_e romimage "normal" option CONFIG_USE_FAILOVER_IMAGE = 0 option CONFIG_USE_FALLBACK_IMAGE = 0 - option CONFIG_ROM_IMAGE_SIZE = 128 * 1024 - option CONFIG_XIP_ROM_SIZE = 128 * 1024 option COREBOOT_EXTRA_VERSION = "_Normal" payload ../payload.elf end @@ -34,8 +32,6 @@ end romimage "fallback" option CONFIG_USE_FAILOVER_IMAGE = 0 option CONFIG_USE_FALLBACK_IMAGE = 1 - option CONFIG_ROM_IMAGE_SIZE = 128 * 1024 - option CONFIG_XIP_ROM_SIZE = 128 * 1024 option COREBOOT_EXTRA_VERSION = "_Fallback" payload ../payload.elf end |