diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-04 16:34:59 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-11 17:44:51 -0400 |
commit | ce058ae5f2c539e4fc8f2ceec591c78eb8b0ae57 (patch) | |
tree | ac2ab1f6ff8a022c32b6c1241359425ea7d7020a /cmd | |
parent | 7a7643184597a72e3b3791de068a402dfc4a66ec (diff) | |
download | u-boot-ce058ae5f2c539e4fc8f2ceec591c78eb8b0ae57.tar.gz u-boot-ce058ae5f2c539e4fc8f2ceec591c78eb8b0ae57.tar.bz2 u-boot-ce058ae5f2c539e4fc8f2ceec591c78eb8b0ae57.zip |
Convert CONFIG_CMD_TRACE to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_TRACE
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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index a5c557e5b2..bb1980ddb3 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1416,6 +1416,15 @@ config CMD_KGDB single-stepping, inspecting variables, etc. This is supported only on PowerPC at present. +config CMD_TRACE + bool "trace - Support tracing of function calls and timing" + help + Enables a command to control using of function tracing within + U-Boot. This allows recording of call traces including timing + information. The command can write data to memory for exporting + for analsys (e.g. using bootchart). See doc/README.trace for full + details. + endmenu config CMD_UBI |