diff options
Diffstat (limited to 'src/cpu/x86/Kconfig')
-rw-r--r-- | src/cpu/x86/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig index bcaf0bfad7..1a4318cbcd 100644 --- a/src/cpu/x86/Kconfig +++ b/src/cpu/x86/Kconfig @@ -4,7 +4,9 @@ config PARALLEL_CPU_INIT default n config PARALLEL_MP - def_bool n + def_bool y + depends on !LEGACY_SMP_INIT + depends on SMP help This option uses common MP infrastructure for bringing up APs in parallel. It additionally provides a more flexible mechanism @@ -17,6 +19,9 @@ config PARALLEL_MP_AP_WORK Allow APs to do other work after initialization instead of going to sleep. +config LEGACY_SMP_INIT + bool + config UDELAY_LAPIC bool default n |