diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 12:45:31 -0400 |
commit | 1b330894bd40cb0d7ef37bb761d104820f794aae (patch) | |
tree | 2d74644790bd20756bf5a57a283709e3d61ca6b4 /cmd | |
parent | 59e12a4a8c219c4a334a2c2023edd1aa20f82a9e (diff) | |
download | u-boot-1b330894bd40cb0d7ef37bb761d104820f794aae.zip u-boot-1b330894bd40cb0d7ef37bb761d104820f794aae.tar.gz u-boot-1b330894bd40cb0d7ef37bb761d104820f794aae.tar.bz2 |
Convert CONFIG_CMD_IRQ to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_IRQ
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index be6b314..1dc8ba2 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1192,6 +1192,14 @@ config CMD_DIAG available tests and running either all the tests, or specific tests identified by name. +config CMD_IRQ + bool "irq - Show information about interrupts" + depends on !ARM && !MIPS && !SH && !MPC512X + help + This enables two commands: + + interrupts - enable or disable interrupts + irqinfo - print device-specific interrupt information endmenu config CMD_UBI |