diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:23 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 09:33:58 -0400 |
commit | d91a9d7fb3910dcbb913bfe183c5268f0e5f928b (patch) | |
tree | 8fbf7e5efa1db940bb23b901e1840d649e38e612 /cmd/Kconfig | |
parent | 51f29370366a40fc54eec579c7567bc1356da6e4 (diff) | |
download | u-boot-d91a9d7fb3910dcbb913bfe183c5268f0e5f928b.tar.gz |
Convert CONFIG_CMD_GETTIME to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_GETTIME
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 495080fc01..7243f78d1e 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -846,6 +846,14 @@ config CMD_TIME help Run commands and summarize execution time. +config CMD_GETTIME + bool "gettime - read elapsed time" + help + Enable the 'gettime' command which reads the elapsed time since + U-Boot started running. This shows the time in seconds and + milliseconds. See also the 'bootstage' command which provides more + flexibility for boot timing. + # TODO: rename to CMD_SLEEP config CMD_MISC bool "sleep" |