Simon Glass has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59604 )
Change subject: emulation/qemu-i440fx: Use a 1MB ROM by default with U-Boot ......................................................................
emulation/qemu-i440fx: Use a 1MB ROM by default with U-Boot
At present the default ROM for for QEMU is too small for U-Boot to fit. Add a condition to catch this and expand it to a 1MB ROM. This allows booting U-Boot under emulation.
Signed-off-by: Simon Glass sjg@chromium.org Change-Id: Ia1a8c1109e3ece5fec56255173a2d19d4a130bcb --- M src/mainboard/emulation/qemu-i440fx/Kconfig 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/59604/1
diff --git a/src/mainboard/emulation/qemu-i440fx/Kconfig b/src/mainboard/emulation/qemu-i440fx/Kconfig index 436bb20..518e51f 100644 --- a/src/mainboard/emulation/qemu-i440fx/Kconfig +++ b/src/mainboard/emulation/qemu-i440fx/Kconfig @@ -9,7 +9,8 @@ select HAVE_CMOS_DEFAULT select HAVE_PIRQ_TABLE select HAVE_ACPI_TABLES - select BOARD_ROMSIZE_KB_256 if !VBOOT + select BOARD_ROMSIZE_KB_256 if !VBOOT && !PAYLOAD_UBOOT + select BOARD_ROMSIZE_KB_1024 if PAYLOAD_UBOOT select BOARD_ROMSIZE_KB_16384 if VBOOT select MAINBOARD_HAS_NATIVE_VGA_INIT select MAINBOARD_FORCE_NATIVE_VGA_INIT