diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-08-25 00:21:44 +0300 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2012-08-25 00:34:46 +0200 |
commit | 651339bb5d3114a83b2ae4bf5d1da87636e7dadc (patch) | |
tree | 5e0bf6ac08afbd22ccdd556800969f838a77a2ef /src/Kconfig | |
parent | 1c36eada27697e1feafda6db162f7d4854b64ff6 (diff) |
Fix mptable build troubles
A missing mptable.c file got passed jenkins, got merged
and broke the build. Hopefully finally fix this.
Deletes unused files:
src/mainboard/asus/dsbf/mptable.c
src/mainboard/supermicro/x7db8/mptable.c
Change-Id: Ie81f5a6c4c69ab381f86a243bc8874395e69ee26
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/1486
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index ccf866544f..469266dde9 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -383,7 +383,7 @@ config GENERATE_ACPI_TABLES config GENERATE_MP_TABLE bool - default HAVE_MP_TABLE + default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC config GENERATE_PIRQ_TABLE bool @@ -413,7 +413,7 @@ config GENERATE_ACPI_TABLES If unsure, say Y. config GENERATE_MP_TABLE - depends on HAVE_MP_TABLE + depends on HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC bool "Generate an MP table" default y help |