It's a better default than QEMU-armv7, which is currently the default
board when coreboot is configured for the first time, because most
coreboot development targets x86.
With this patch, the minimal steps to coreboot+SeaBIOS booting in QEMU
become:
git clone https://review.coreboot.org/coreboot.git && cd coreboot
make crossgcc-x86
make olddefconfig && make
qemu-system-x86_64 -bios build/coreboot.rom
BUG=None
BRANCH=None
TEST=None
Signed-off-by: Jonathan Neuschfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/16987
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Change-Id: Ie44a5d95547a55df93f29082c3b5a86fb83aa1e7
Reviewed-on: https://chromium-review.googlesource.com/402696
Commit-Ready: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
22 lines
405 B
Text
22 lines
405 B
Text
if VENDOR_EMULATION
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
default BOARD_EMULATION_QEMU_X86_I440FX
|
|
|
|
source "src/mainboard/emulation/*/Kconfig.name"
|
|
|
|
endchoice
|
|
|
|
config BOARD_EMULATION_QEMU_X86
|
|
bool
|
|
default y
|
|
depends on BOARD_EMULATION_QEMU_X86_I440FX || BOARD_EMULATION_QEMU_X86_Q35
|
|
|
|
source "src/mainboard/emulation/*/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Emulation"
|
|
|
|
endif # VENDOR_EMULATION
|