From 583a45c33f3040a2e936c2d4012fe1b3a6edb537 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 25 Sep 2025 14:51:30 -0600 Subject: [PATCH] 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 --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3