From 9d42a06019178ccd0fff37864ff09c2335c68308 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 25 Sep 2025 14:51:32 -0600 Subject: [PATCH] cmd: Update dependencies on CMD_IRQ For CMD_IRQ to function, we need enable/disable_interrupt functions as well as do_irqinfo functions to be defined. Only NIOS2, PowerPC and X86 implement the latter, so correct dependencies to be opt-in not out-out here. Signed-off-by: Tom Rini --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index bb11fd07cdf..eb615552a00 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -3009,7 +3009,7 @@ config CMD_EVENT config CMD_IRQ bool "irq - Show information about interrupts" - depends on !ARM && !MIPS && !RISCV && !SH + depends on NIOS2 || PPC || X86 help This enables two commands: -- 2.47.3