From 480245cf273dfd14536dc2b30aff0a733b71a1ed Mon Sep 17 00:00:00 2001 From: Ashok Reddy Soma Date: Mon, 17 Jan 2022 10:16:50 +0100 Subject: cmd: Add Kconfig option for multiprocessor cmds Add Kconfig option(CONFIG_CMD_MP) to enable or disable multiprocessor commands. Compile cmd/mp.c based on CONFIG_CMD_MP. Signed-off-by: Ashok Reddy Soma Signed-off-by: Michal Simek --- cmd/Kconfig | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'cmd/Kconfig') diff --git a/cmd/Kconfig b/cmd/Kconfig index 84ede90eee9..5e25e45fd28 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1827,12 +1827,13 @@ config CMD_SLEEP help Delay execution for some time -config MP - bool "support for multiprocessor" +config CMD_MP + bool "support for multiprocessor commands" + depends on MP + default y help - This provides an option to brinup - different processors in multiprocessor - cases. + This enables commands to bringup different processors + in multiprocessor cases. config CMD_TIMER bool "timer" -- cgit v1.3.1