Author: blogic Date: 2015-03-18 21:08:21 +0100 (Wed, 18 Mar 2015) New Revision: 44878
Modified: trunk/config/Config-kernel.in Log: config: add function tracers Adds menuconfig options for ftrace function tracers Signed-off-by: Bryan Forbes <[email protected]> Modified: trunk/config/Config-kernel.in =================================================================== --- trunk/config/Config-kernel.in 2015-03-18 18:22:41 UTC (rev 44877) +++ trunk/config/Config-kernel.in 2015-03-18 20:08:21 UTC (rev 44878) @@ -59,6 +59,26 @@ depends on KERNEL_FTRACE default n +config KERNEL_FUNCTION_TRACER + bool "Function tracer" + depends on KERNEL_FTRACE + default n + +config KERNEL_FUNCTION_GRAPH_TRACER + bool "Function graph tracer" + depends on KERNEL_FUNCTION_TRACER + default n + +config KERNEL_DYNAMIC_FTRACE + bool "Enable/disable function tracing dynamically" + depends on KERNEL_FUNCTION_TRACER + default n + +config KERNEL_FUNCTION_PROFILER + bool "Function profiler" + depends on KERNEL_FUNCTION_TRACER + default n + config KERNEL_DEBUG_KERNEL bool default n _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
