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
This commit is contained in:
parent
d9d5e345c0
commit
24ddfd4b7d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue