Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58551 )
Change subject: cpu/x86: drop CPU_X86_LAPIC Kconfig option ......................................................................
cpu/x86: drop CPU_X86_LAPIC Kconfig option
All x86 CPUs in the coreboot tree have a local APIC, so the corresponding code can be unconditionally included in the build.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ifc354fb386977b0fca4caa72c03aa77a20bc348e --- M src/cpu/x86/Kconfig M src/cpu/x86/Makefile.inc 2 files changed, 1 insertion(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/58551/1
diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index a289325..bae3889 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -4,10 +4,6 @@ help Add the x86_enable_cache ramstage helper function to the build.
-config CPU_X86_LAPIC - bool - default y - config PARALLEL_MP def_bool y depends on !LEGACY_SMP_INIT diff --git a/src/cpu/x86/Makefile.inc b/src/cpu/x86/Makefile.inc index a6c51d0..19c9e03 100644 --- a/src/cpu/x86/Makefile.inc +++ b/src/cpu/x86/Makefile.inc @@ -1,5 +1,5 @@ subdirs-$(CONFIG_CPU_X86_CACHE_HELPER) += cache -subdirs-$(CONFIG_CPU_X86_LAPIC) += lapic +subdirs-y += lapic subdirs-y += mtrr subdirs-y += pae subdirs-$(CONFIG_HAVE_SMI_HANDLER) += smm