diff options
author | Daniel Golle <daniel@makrotopia.org> | 2017-05-20 00:20:35 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2017-05-20 00:26:03 +0200 |
commit | 48d71ab5021e5238623bab2f87b6425b2609c60a (patch) | |
tree | 608c2a1311cb718541cd27683c8b07c8e9aa32ad /config | |
parent | bad2f9c4dc39ff8a8bdc7ad4bd86f2c068457a5a (diff) | |
download | mtk-20170518-48d71ab5021e5238623bab2f87b6425b2609c60a.zip mtk-20170518-48d71ab5021e5238623bab2f87b6425b2609c60a.tar.gz mtk-20170518-48d71ab5021e5238623bab2f87b6425b2609c60a.tar.bz2 |
kernel: enable CRASH_DUMP on supported platforms
While we have CRASHLOG on MIPS it makes sense to support 'classic'
kexec-based CRASH_DUMP on x86 and arm platforms.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-kernel.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index f65e3da..ebc8e1f 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -231,6 +231,16 @@ config KERNEL_RELAY config KERNEL_KEXEC bool "Enable kexec support" +config KERNEL_PROC_VMCORE + bool + +config KERNEL_CRASH_DUMP + depends on i386 || x86_64 || arm || armeb + select KERNEL_KEXEC + select KERNEL_PROC_VMCORE + bool "Enable support for kexec crashdump" + default y + config USE_RFKILL bool "Enable rfkill support" default RFKILL_SUPPORT |