summaryrefslogtreecommitdiff
path: root/cmd/Kconfig
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-09-25 14:51:30 -0600
committerTom Rini <[email protected]>2025-10-08 16:12:48 -0600
commit583a45c33f3040a2e936c2d4012fe1b3a6edb537 (patch)
tree73cac30078932dc1d96686ac449de49b0155e12d /cmd/Kconfig
parente5fea3f3b9f41c76287328223b934644fc50cbad (diff)
cmd: Make CMD_MP depend on the CPU framework being disabled
The CMD_MP (and cmd/mp.c) command provide a "cpu" command which is mutually exclusive from the "cpu" command provided by cmd/cpu.c and the CPU framework. Make CMD_MP depend on CPU not being enabled. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r--cmd/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 9a901122e95..bb11fd07cdf 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2437,7 +2437,7 @@ config CMD_SLEEP
config CMD_MP
bool "support for multiprocessor commands"
- depends on MP
+ depends on MP && !CPU
default y
help
This enables commands to bringup different processors