aboutsummaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-04-08 13:20:51 -0600
committerSimon Glass <sjg@chromium.org>2019-04-23 20:26:43 -0600
commita24a78d7e3e8b6008423d1a6aa49a6c9eb904752 (patch)
tree1a48500249768c160e290a4d10af2ef0bb1a35bd /lib/Kconfig
parentf564d09608f422d4584ae7416d9da040a89ebee3 (diff)
downloadu-boot-a24a78d7e3e8b6008423d1a6aa49a6c9eb904752.zip
u-boot-a24a78d7e3e8b6008423d1a6aa49a6c9eb904752.tar.gz
u-boot-a24a78d7e3e8b6008423d1a6aa49a6c9eb904752.tar.bz2
Convert CONFIG_TRACE to Kconfig
This converts the following to Kconfig: CONFIG_TRACE Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 2120216..a3352a4 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -165,6 +165,15 @@ config RBTREE
config BITREVERSE
bool "Bit reverse library from Linux"
+config TRACE
+ bool "Support for tracing of function calls and timing"
+ imply CMD_TRACE
+ help
+ Enables function tracing within U-Boot. This allows recording of call
+ traces including timing information. The command can write data to
+ memory for exporting for analysis (e.g. using bootchart).
+ See doc/README.trace for full details.
+
source lib/dhry/Kconfig
menu "Security support"