diff options
author | Simon Glass <sjg@chromium.org> | 2017-04-26 22:28:08 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-30 13:41:01 -0400 |
commit | 3bd25cb512b912e9c8e9074467e730a73f87371d (patch) | |
tree | 563d4b4546beeb307299c94b693d7eb5c8cc877c /cmd | |
parent | 10c01337d3ad0d4878b4b5fb14145a8e6e6f63c7 (diff) | |
download | u-boot-3bd25cb512b912e9c8e9074467e730a73f87371d.tar.gz |
Convert CONFIG_CMD_DIAG to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_DIAG
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: imply CMD_DIAG on some keymile configs]
Signed-off-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 54513988e8..334e531ffe 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -972,6 +972,14 @@ config CMD_BEDBUG for some PowerPC processors. For details please see the docuemntation in doc/README.beddbug +config CMD_DIAG + bool "diag - Board diagnostics" + help + This command provides access to board diagnostic tests. These are + called Power-on Self Tests (POST). The command allows listing of + available tests and running either all the tests, or specific tests + identified by name. + endmenu config CMD_UBI |