diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-09 18:53:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-09 18:53:39 -0500 |
commit | 50c36504fc6090847f1fbdc7cf4852ae16d6e500 (patch) | |
tree | aa43bb2839cbb733c2aa59fefc45b5c757458582 /lib | |
parent | ce5c2d2c256a4c8b523036537cd6be2d6af8f69d (diff) | |
parent | d1189c63ea5e3272dc390a83e1235f142b739eb4 (diff) |
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 16bf3bc25e3e..8c15b29d5adc 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -312,6 +312,15 @@ config DEBUG_SECTION_MISMATCH | |||
312 | - Enable verbose reporting from modpost in order to help resolve | 312 | - Enable verbose reporting from modpost in order to help resolve |
313 | the section mismatches that are reported. | 313 | the section mismatches that are reported. |
314 | 314 | ||
315 | config SECTION_MISMATCH_WARN_ONLY | ||
316 | bool "Make section mismatch errors non-fatal" | ||
317 | default y | ||
318 | help | ||
319 | If you say N here, the build process will fail if there are any | ||
320 | section mismatch, instead of just throwing warnings. | ||
321 | |||
322 | If unsure, say Y. | ||
323 | |||
315 | # | 324 | # |
316 | # Select this config option from the architecture Kconfig, if it | 325 | # Select this config option from the architecture Kconfig, if it |
317 | # is preferred to always offer frame pointers as a config | 326 | # is preferred to always offer frame pointers as a config |