File tree Expand file tree Collapse file tree 10 files changed +29
-1
lines changed Expand file tree Collapse file tree 10 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -1598,6 +1598,9 @@ config ATAGS_PROC
15981598config ARCH_SUPPORTS_CRASH_DUMP
15991599 def_bool y
16001600
1601+ config ARCH_DEFAULT_CRASH_DUMP
1602+ def_bool y
1603+
16011604config AUTO_ZRELADDR
16021605 bool "Auto calculation of the decompressed kernel image address" if !ARCH_MULTIPLATFORM
16031606 default !(ARCH_FOOTBRIDGE || ARCH_RPC || ARCH_SA1100)
Original file line number Diff line number Diff line change @@ -1576,6 +1576,9 @@ config ARCH_DEFAULT_KEXEC_IMAGE_VERIFY_SIG
15761576config ARCH_SUPPORTS_CRASH_DUMP
15771577 def_bool y
15781578
1579+ config ARCH_DEFAULT_CRASH_DUMP
1580+ def_bool y
1581+
15791582config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION
15801583 def_bool CRASH_RESERVE
15811584
Original file line number Diff line number Diff line change @@ -604,6 +604,9 @@ config ARCH_SUPPORTS_KEXEC
604604config ARCH_SUPPORTS_CRASH_DUMP
605605 def_bool y
606606
607+ config ARCH_DEFAULT_CRASH_DUMP
608+ def_bool y
609+
607610config ARCH_SELECTS_CRASH_DUMP
608611 def_bool y
609612 depends on CRASH_DUMP
Original file line number Diff line number Diff line change @@ -2876,6 +2876,9 @@ config ARCH_SUPPORTS_KEXEC
28762876config ARCH_SUPPORTS_CRASH_DUMP
28772877 def_bool y
28782878
2879+ config ARCH_DEFAULT_CRASH_DUMP
2880+ def_bool y
2881+
28792882config PHYSICAL_START
28802883 hex "Physical address where the kernel is loaded"
28812884 default "0xffffffff84000000"
Original file line number Diff line number Diff line change @@ -684,6 +684,10 @@ config RELOCATABLE_TEST
684684config ARCH_SUPPORTS_CRASH_DUMP
685685 def_bool PPC64 || PPC_BOOK3S_32 || PPC_85xx || (44x && !SMP)
686686
687+ config ARCH_DEFAULT_CRASH_DUMP
688+ bool
689+ default y if !PPC_BOOK3S_32
690+
687691config ARCH_SELECTS_CRASH_DUMP
688692 def_bool y
689693 depends on CRASH_DUMP
Original file line number Diff line number Diff line change @@ -898,6 +898,9 @@ config ARCH_SUPPORTS_KEXEC_PURGATORY
898898config ARCH_SUPPORTS_CRASH_DUMP
899899 def_bool y
900900
901+ config ARCH_DEFAULT_CRASH_DUMP
902+ def_bool y
903+
901904config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION
902905 def_bool CRASH_RESERVE
903906
Original file line number Diff line number Diff line change @@ -276,6 +276,9 @@ config ARCH_SUPPORTS_CRASH_DUMP
276276 This option also enables s390 zfcpdump.
277277 See also <file:Documentation/arch/s390/zfcpdump.rst>
278278
279+ config ARCH_DEFAULT_CRASH_DUMP
280+ def_bool y
281+
279282menu "Processor type and features"
280283
281284config HAVE_MARCH_Z10_FEATURES
Original file line number Diff line number Diff line change @@ -550,6 +550,9 @@ config ARCH_SUPPORTS_KEXEC
550550config ARCH_SUPPORTS_CRASH_DUMP
551551 def_bool BROKEN_ON_SMP
552552
553+ config ARCH_DEFAULT_CRASH_DUMP
554+ def_bool y
555+
553556config ARCH_SUPPORTS_KEXEC_JUMP
554557 def_bool y
555558
Original file line number Diff line number Diff line change @@ -2084,6 +2084,9 @@ config ARCH_SUPPORTS_KEXEC_JUMP
20842084config ARCH_SUPPORTS_CRASH_DUMP
20852085 def_bool X86_64 || (X86_32 && HIGHMEM)
20862086
2087+ config ARCH_DEFAULT_CRASH_DUMP
2088+ def_bool y
2089+
20872090config ARCH_SUPPORTS_CRASH_HOTPLUG
20882091 def_bool y
20892092
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ config KEXEC_JUMP
9797
9898config CRASH_DUMP
9999 bool "kernel crash dumps"
100- default y
100+ default ARCH_DEFAULT_CRASH_DUMP
101101 depends on ARCH_SUPPORTS_CRASH_DUMP
102102 depends on KEXEC_CORE
103103 select VMCORE_INFO
You can’t perform that action at this time.
0 commit comments