aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorAlex Kelly2012-10-04 19:15:23 -0500
committerLinus Torvalds2012-10-05 13:05:15 -0500
commit046d662f481830e652ac34cd112249adde16452a (patch)
treead13e968b4b02f9e2c35ce45f358477474df80d7 /init
parentdb9aeca97a58563e1ab927d157c9b5048f233e73 (diff)
downloadkernel-audio-046d662f481830e652ac34cd112249adde16452a.tar.gz
kernel-audio-046d662f481830e652ac34cd112249adde16452a.tar.xz
kernel-audio-046d662f481830e652ac34cd112249adde16452a.zip
coredump: make core dump functionality optional
Adds an expert Kconfig option, CONFIG_COREDUMP, which allows disabling of core dump. This saves approximately 2.6k in the compiled kernel, and complements CONFIG_ELF_CORE, which now depends on it. CONFIG_COREDUMP also disables coredump-related sysctls, except for suid_dumpable and related functions, which are necessary for ptrace. [akpm@linux-foundation.org: fix binfmt_aout.c build] Signed-off-by: Alex Kelly <alex.page.kelly@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Acked-by: Serge Hallyn <serge.hallyn@canonical.com> Acked-by: Kees Cook <keescook@chromium.org> Cc: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig
index e82f289290fa..ed6334dd5e71 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1199,6 +1199,7 @@ config BUG
1199 Just say Y. 1199 Just say Y.
1200 1200
1201config ELF_CORE 1201config ELF_CORE
1202 depends on COREDUMP
1202 default y 1203 default y
1203 bool "Enable ELF core dumps" if EXPERT 1204 bool "Enable ELF core dumps" if EXPERT
1204 help 1205 help