]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blobdiff - arch/Kconfig
UBUNTU: Start new release
[mirror_ubuntu-zesty-kernel.git] / arch / Kconfig
index 835d55d521048ae8de7f27df8091f56e22c71c80..99839c23d453fa8ded2061968aead8a6ee4b2317 100644 (file)
@@ -5,6 +5,9 @@
 config KEXEC_CORE
        bool
 
+config HAVE_IMA_KEXEC
+       bool
+
 config OPROFILE
        tristate "OProfile system profiling"
        depends on PROFILING
@@ -364,8 +367,9 @@ menuconfig GCC_PLUGINS
          See Documentation/gcc-plugins.txt for details.
 
 config GCC_PLUGIN_CYC_COMPLEXITY
-       bool "Compute the cyclomatic complexity of a function"
+       bool "Compute the cyclomatic complexity of a function" if EXPERT
        depends on GCC_PLUGINS
+       depends on !COMPILE_TEST
        help
          The complexity M of a function's control flow graph is defined as:
           M = E - N + 2P
@@ -375,6 +379,10 @@ config GCC_PLUGIN_CYC_COMPLEXITY
          N = the number of nodes
          P = the number of connected components (exit nodes).
 
+         Enabling this plugin reports the complexity to stderr during the
+         build. It mainly serves as a simple example of how to create a
+         gcc plugin for the kernel.
+
 config GCC_PLUGIN_SANCOV
        bool
        depends on GCC_PLUGINS