summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-09-24 09:03:06 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-09-24 09:03:06 +0000
commit892b091e967cd2a54e23d22c8b37bfe12ebaaab5 (patch)
tree6ea2802b10a9217c5c943b53bac44001f1e5389d /src/mainboard/emulation
parentac7a2d2f848928fba5054d37343754fc4b2d557d (diff)
downloadcoreboot-892b091e967cd2a54e23d22c8b37bfe12ebaaab5.tar.xz
Make all Kconfig enabled boards build (tested with kbuildall).
Also enable building individual boards with kbuildall for debugging. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4666 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/emulation')
-rw-r--r--src/mainboard/emulation/Kconfig20
-rw-r--r--src/mainboard/emulation/qemu-x86/Kconfig19
2 files changed, 20 insertions, 19 deletions
diff --git a/src/mainboard/emulation/Kconfig b/src/mainboard/emulation/Kconfig
index 023adffee6..c2ecc2b2b9 100644
--- a/src/mainboard/emulation/Kconfig
+++ b/src/mainboard/emulation/Kconfig
@@ -2,24 +2,6 @@ choice
prompt "Mainboard model"
depends on VENDOR_EMULATION
-config BOARD_EMULATION_QEMU_X86
- bool "QEMU x86"
- select ARCH_X86
- select CPU_I586
- select SOUTHBRIDGE_INTEL_I82371EB
- select CPU_EMULATION_QEMU_X86
- select CONSOLE_SERIAL8250
- help
- x86 QEMU variant.
+source "src/mainboard/emulation/qemu-x86/Kconfig"
endchoice
-
-config MAINBOARD_DIR
- string
- default emulation/qemu-x86
- depends on BOARD_EMULATION_QEMU_X86
-
-config MAINBOARD_PART_NUMBER
- string
- default "QEMU-86"
- depends on BOARD_EMULATION_QEMU_X86
diff --git a/src/mainboard/emulation/qemu-x86/Kconfig b/src/mainboard/emulation/qemu-x86/Kconfig
new file mode 100644
index 0000000000..8649bd8050
--- /dev/null
+++ b/src/mainboard/emulation/qemu-x86/Kconfig
@@ -0,0 +1,19 @@
+config BOARD_EMULATION_QEMU_X86
+ bool "QEMU x86"
+ select ARCH_X86
+ select CPU_I586
+ select SOUTHBRIDGE_INTEL_I82371EB
+ select CPU_EMULATION_QEMU_X86
+ select CONSOLE_SERIAL8250
+ help
+ x86 QEMU variant.
+
+config MAINBOARD_DIR
+ string
+ default emulation/qemu-x86
+ depends on BOARD_EMULATION_QEMU_X86
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "QEMU-86"
+ depends on BOARD_EMULATION_QEMU_X86