diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-09 15:53:39 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-09 15:53:39 -0800 |
commit | 50c36504fc6090847f1fbdc7cf4852ae16d6e500 (patch) | |
tree | aa43bb2839cbb733c2aa59fefc45b5c757458582 /lib | |
parent | ce5c2d2c256a4c8b523036537cd6be2d6af8f69d (diff) | |
parent | d1189c63ea5e3272dc390a83e1235f142b739eb4 (diff) | |
download | op-kernel-dev-50c36504fc6090847f1fbdc7cf4852ae16d6e500.zip op-kernel-dev-50c36504fc6090847f1fbdc7cf4852ae16d6e500.tar.gz |
Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux
Pull module updates from Rusty Russell:
"Nothing exciting, minor tweaks and cleanups"
* tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux:
scripts: [modpost] add new sections to white list
modpost: Add flag -E for making section mismatches fatal
params: don't ignore the rest of cmdline if parse_one() fails
modpost: abort if a module symbol is too long
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 16bf3bc..8c15b29 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -312,6 +312,15 @@ config DEBUG_SECTION_MISMATCH - Enable verbose reporting from modpost in order to help resolve the section mismatches that are reported. +config SECTION_MISMATCH_WARN_ONLY + bool "Make section mismatch errors non-fatal" + default y + help + If you say N here, the build process will fail if there are any + section mismatch, instead of just throwing warnings. + + If unsure, say Y. + # # Select this config option from the architecture Kconfig, if it # is preferred to always offer frame pointers as a config |