[U-Boot] [PATCH v3 27/48] Convert CONFIG_CMD_GETTIME to Kconfig
Simon Glass
sjg at chromium.org
Wed May 17 09:25:23 UTC 2017
This converts the following to Kconfig:
CONFIG_CMD_GETTIME
Signed-off-by: Simon Glass <sjg at chromium.org>
Reviewed-by: Tom Rini <trini at konsulko.com>
---
Changes in v3: None
Changes in v2:
- Imply CMD_TIME on x86 to remove defconfig changes
README | 1 -
arch/Kconfig | 1 +
cmd/Kconfig | 8 ++++++++
include/config_cmd_all.h | 1 -
include/configs/x86-common.h | 1 -
scripts/config_whitelist.txt | 1 -
6 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/README b/README
index ba9691a895..efb1512e17 100644
--- a/README
+++ b/README
@@ -844,7 +844,6 @@ The following options need to be configured:
CONFIG_CMD_FAT * FAT command support
CONFIG_CMD_FLASH flinfo, erase, protect
CONFIG_CMD_FPGA FPGA device initialization support
- CONFIG_CMD_GETTIME * Get time since boot
CONFIG_CMD_GO * the 'go' command (exec code)
CONFIG_CMD_GREPENV * search environment
CONFIG_CMD_HASH * calculate hash / digest
diff --git a/arch/Kconfig b/arch/Kconfig
index ce47078d6a..4f8409ca1b 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -86,6 +86,7 @@ config X86
select DM_SPI_FLASH
select USB_EHCI_HCD
imply CMD_FPGA_LOADMK
+ imply CMD_GETTIME
config XTENSA
bool "Xtensa architecture"
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"
diff --git a/include/config_cmd_all.h b/include/config_cmd_all.h
index 7e9983e150..2c633e6727 100644
--- a/include/config_cmd_all.h
+++ b/include/config_cmd_all.h
@@ -13,7 +13,6 @@
* Alphabetical list of all possible commands.
*/
-#define CONFIG_CMD_GETTIME /* Get time since boot */
#define CONFIG_CMD_HASH /* calculate hash / digest */
#define CONFIG_CMD_IDE /* IDE harddisk support */
#define CONFIG_CMD_IMMAP /* IMMR dump support */
diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h
index 8284076b08..e9d5f3d053 100644
--- a/include/configs/x86-common.h
+++ b/include/configs/x86-common.h
@@ -73,7 +73,6 @@
#define CONFIG_CMD_IO
#define CONFIG_CMD_IRQ
#define CONFIG_CMD_PCI
-#define CONFIG_CMD_GETTIME
#define CONFIG_SCSI
#define CONFIG_CMD_ZBOOT
diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt
index ba8ac3ebcc..718a8ede2a 100644
--- a/scripts/config_whitelist.txt
+++ b/scripts/config_whitelist.txt
@@ -383,7 +383,6 @@ CONFIG_CM922T_XA10
CONFIG_CMDLINE_EDITING
CONFIG_CMDLINE_PS_SUPPORT
CONFIG_CMDLINE_TAG
-CONFIG_CMD_GETTIME
CONFIG_CMD_GSC
CONFIG_CMD_HASH
CONFIG_CMD_HD44760
--
2.13.0.303.g4ebf302169-goog
More information about the U-Boot
mailing list