From: Tom Rini Date: Thu, 25 Sep 2025 20:51:30 +0000 (-0600) Subject: cmd: Make CMD_MP depend on the CPU framework being disabled X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=583a45c33f3040a2e936c2d4012fe1b3a6edb537;p=thirdparty%2Fu-boot.git 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 --- 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