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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58551 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
parent
cefee5e40f
commit
39789eb695
|
@ -4,10 +4,6 @@ config CPU_X86_CACHE_HELPER
|
|||
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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue