diff options
author | Simon Glass | 2017-08-04 16:34:55 -0600 |
---|---|---|
committer | Tom Rini | 2017-08-11 15:42:00 -0400 |
commit | 3cef3b31853de70852abc07d8b64040e4bfa04d7 (patch) | |
tree | 09e06ba11f3595e55bec72b3a84bd1c374ca1725 /cmd | |
parent | 90d99e5936d4bcef31fd19a5339fbb1f1ca188a0 (diff) |
Convert CONFIG_CMD_TERMINAL to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_TERMINAL
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.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 d26dcf7fc2f..4d7516eb556 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1094,6 +1094,14 @@ config CMD_QFW source "cmd/mvebu/Kconfig" +config CMD_TERMINAL + bool "terminal - provides a way to attach a serial terminal" + help + Provides a 'cu'-like serial terminal command. This can be used to + access other serial ports from the system console. The terminal + is very simple with no special processing of characters. As with + cu, you can press ~. (tilde followed by period) to exit. + endmenu config CMD_BOOTSTAGE |