coreboot/mainboard/emulation/Kconfig
Stefan Reinauer a2964a605c (trivial) add example of how to add stage0 for other cpu types to LBv3
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@318 f3766cd6-281f-0410-b1cd-43a5c92072e9
2007-05-18 15:20:11 +00:00

26 lines
513 B
Text

choice
prompt "Mainboard model"
depends on VENDOR_EMULATION
config BOARD_EMULATION_QEMU_X86
bool "QEMU x86"
select ARCH_X86
select CPU_I586
select OPTION_TABLE
select NORTHBRIDGE_INTEL_I440BXEMULATION
select SOUTHBRIDGE_INTEL_I82371EB
select SUPERIO_WINBOND_W83627HF
help
x86 QEMU variant.
config BOARD_EMULATION_QEMU_POWERPC
bool "PowerPC QEMU (EXPERIMENTAL)"
depends on EXPERIMENTAL
select ARCH_POWERPC
help
PowerPC QEMU variant.
endchoice
source "mainboard/emulation/qemu-x86/Kconfig"