[coreboot] [commit] r5061 - trunk/targets/asus/a8n_e

svn at coreboot.org svn at coreboot.org
Thu Jan 28 23:25:49 CET 2010


Author: uwe
Date: 2010-01-28 23:25:49 +0100 (Thu, 28 Jan 2010)
New Revision: 5061

Modified:
   trunk/targets/asus/a8n_e/Config.lb
Log:
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 at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/targets/asus/a8n_e/Config.lb
===================================================================
--- trunk/targets/asus/a8n_e/Config.lb	2010-01-27 19:55:01 UTC (rev 5060)
+++ trunk/targets/asus/a8n_e/Config.lb	2010-01-28 22:25:49 UTC (rev 5061)
@@ -25,8 +25,6 @@
 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 @@
 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





More information about the coreboot mailing list