2013-08-02 20:01:11 +08:00
|
|
|
config BR2_PACKAGE_TRACE_CMD
|
|
|
|
bool "trace-cmd"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2014-02-09 21:04:27 +08:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2014-12-04 05:41:29 +08:00
|
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
2013-08-02 20:01:11 +08:00
|
|
|
help
|
|
|
|
Command line reader for ftrace.
|
|
|
|
|
2017-12-18 16:21:05 +08:00
|
|
|
To use this profiling tool, you should enable ftrace in your
|
|
|
|
kernel configuration. This command collect traces on your
|
|
|
|
target. You can analyse these traces on the target or on
|
|
|
|
the host via the gui "kernel shark"
|
2013-08-02 20:01:11 +08:00
|
|
|
|
|
|
|
http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
|
|
|
|
2015-03-31 05:07:30 +08:00
|
|
|
comment "trace-cmd needs a toolchain w/ threads, dynamic library"
|
2014-08-04 21:20:38 +08:00
|
|
|
depends on BR2_USE_MMU
|
2015-03-31 05:07:30 +08:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|