Add menuconfig option for enabling profiling in the kernel.
authorlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 29 Jan 2009 23:52:35 +0000 (23:52 +0000)
committerlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 29 Jan 2009 23:52:35 +0000 (23:52 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14272 3c298f89-4303-0410-b956-a3cf2f4a3e73

Config.in
include/kernel-defaults.mk

index 0f131f0..7c98044 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -124,6 +124,12 @@ config KERNEL_KALLSYMS
        default n
        help
                This will give you more information in stack traces from kernel oopses
+config KERNEL_PROFILING
+       bool "Compile the kernel with profiling enabled"
+       default n
+       help
+               Enable the extended profiling support mechanisms used by profilers such
+               as OProfile.
 
 endmenu
 
index 4aa5c0e..e3897a6 100644 (file)
@@ -87,6 +87,7 @@ endef
 define Kernel/Configure/Default
        $(LINUX_CONFCMD) > $(LINUX_DIR)/.config.target
        echo "$(if $(CONFIG_KERNEL_KALLSYMS),CONFIG_KALLSYMS=y,# CONFIG_KALLSYMS is not set)" >> $(LINUX_DIR)/.config.target
+       echo "$(if $(CONFIG_KERNEL_PROFILING),CONFIG_PROFILING=y,# CONFIG_PROFILING is not set)" >> $(LINUX_DIR)/.config.target
        echo "# CONFIG_KALLSYMS_EXTRA_PASS is not set" >> $(LINUX_DIR)/.config.target
        echo "# CONFIG_KPROBES is not set" >> $(LINUX_DIR)/.config.target
        $(SCRIPT_DIR)/metadata.pl kconfig $(TMP_DIR)/.packageinfo $(TOPDIR)/.config > $(LINUX_DIR)/.config.override
This page took 0.024792 seconds and 4 git commands to generate.