Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42581 )
Change subject: src: don't select GENERATE_MP_TABLE if DRIVERS_GENERIC_IOAPIC is set ......................................................................
src: don't select GENERATE_MP_TABLE if DRIVERS_GENERIC_IOAPIC is set
None of the boards selecting DRIVERS_GENERIC_IOAPIC has a non-empty mptable.c, so don't select GENERATE_MP_TABLE if DRIVERS_GENERIC_IOAPIC is selected.
Change-Id: I785874df604e52feb06a2e67a29de1ffead29bfc Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/42581/1
diff --git a/src/Kconfig b/src/Kconfig index 1b49e2b..e1b37b3 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -669,7 +669,7 @@ config GENERATE_MP_TABLE prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC bool - default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC + default HAVE_MP_TABLE help Generate an MP table (conforming to the Intel MultiProcessor specification 1.4) for this board.