diff options
| author | Tom Rini <[email protected]> | 2025-09-25 14:51:30 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-08 16:12:48 -0600 |
| commit | 583a45c33f3040a2e936c2d4012fe1b3a6edb537 (patch) | |
| tree | 73cac30078932dc1d96686ac449de49b0155e12d | |
| parent | e5fea3f3b9f41c76287328223b934644fc50cbad (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]>
| -rw-r--r-- | cmd/Kconfig | 2 |
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 |
