kernel: smp: group SMP options in Kconfig file

Move SMP option together and align help text.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2018-02-25 22:12:35 -05:00 committed by Anas Nashif
commit ee9bebf7d0

View file

@ -586,6 +586,7 @@ config MAX_DOMAIN_PARTITIONS
help help
Configure the maximum number of partitions per memory domain. Configure the maximum number of partitions per memory domain.
menu "SMP Options"
config USE_SWITCH config USE_SWITCH
bool bool
prompt "Use new-style _arch_switch instead of __swap" prompt "Use new-style _arch_switch instead of __swap"
@ -603,7 +604,7 @@ config SMP
prompt "Enable symmetric multithreading support" prompt "Enable symmetric multithreading support"
default n default n
help help
When true, Zephyr will be build with SMP support, allowing When true, kernel will be built with SMP support, allowing
more than one CPU to schedule Zephyr tasks at a time. more than one CPU to schedule Zephyr tasks at a time.
config MP_NUM_CPUS config MP_NUM_CPUS
@ -614,6 +615,8 @@ config MP_NUM_CPUS
Number of multiprocessing-capable cores available to the Number of multiprocessing-capable cores available to the
multicpu API and SMP features. multicpu API and SMP features.
endmenu
source "kernel/Kconfig.event_logger" source "kernel/Kconfig.event_logger"
source "kernel/Kconfig.power_mgmt" source "kernel/Kconfig.power_mgmt"