diff options
author | Simon Glass | 2019-04-08 13:20:51 -0600 |
---|---|---|
committer | Simon Glass | 2019-04-23 20:26:43 -0600 |
commit | a24a78d7e3e8b6008423d1a6aa49a6c9eb904752 (patch) | |
tree | 1a48500249768c160e290a4d10af2ef0bb1a35bd /lib/Kconfig | |
parent | f564d09608f422d4584ae7416d9da040a89ebee3 (diff) |
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/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 2120216593e..a3352a4fa15 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" |