coreboot/mainboard/emulation/Kconfig
Stefan Reinauer 2bf728bfe0 Add three new options:
- EXPERIMENTAL - enable experimental/incomplete code/boards
 - EXPERT - enable expert/developer options
 - LOCALVERSION - set a string to append to the LinuxBIOS version

Mark BOARD_EMULATION_QEMU_POWERPC and CONSOLE_USB as experimental for now.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@184 f3766cd6-281f-0410-b1cd-43a5c92072e9
2007-03-04 23:47:47 +00:00

22 lines
383 B
Text

choice
prompt "Board model"
depends on VENDOR_EMULATION
config BOARD_EMULATION_QEMU_X86
bool "x86 QEMU"
select ARCH_X86
select CAR_TYPE_I586
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"