southbridge drivers in Kconfig. * It includes initial superio code as well, but there is at least one error in the pnp_device.c/superio scenario left * Fixed biosemu.c, vm86.c, pnp_device.c (sort of) * Enable vm86 instead of x86emu per default for vga init for now. This makes VGA in qemu work. There might be a bug in x86emu or the compiler I am using. (gcc version 4.1.2 20070115 (prerelease) (SUSE Linux)) * Import isa-dma.c, keyboard.c and i8259.c from v2 /pc80, which was taken from LinuxBIOSv1 released from LANL under release LA-CC Number 00-34 and using parts from the Linux kernel. This patch makes vga and keyboard work in qemu. Yippie Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@260 f3766cd6-281f-0410-b1cd-43a5c92072e9
25 lines
497 B
Text
25 lines
497 B
Text
choice
|
|
prompt "Mainboard model"
|
|
depends on VENDOR_EMULATION
|
|
|
|
config BOARD_EMULATION_QEMU_X86
|
|
bool "x86 QEMU"
|
|
select ARCH_X86
|
|
select CAR_TYPE_I586
|
|
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"
|
|
|