File tree 10 files changed +29
-1
lines changed
10 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -1598,6 +1598,9 @@ config ATAGS_PROC
1598
1598
config ARCH_SUPPORTS_CRASH_DUMP
1599
1599
def_bool y
1600
1600
1601
+ config ARCH_DEFAULT_CRASH_DUMP
1602
+ def_bool y
1603
+
1601
1604
config AUTO_ZRELADDR
1602
1605
bool "Auto calculation of the decompressed kernel image address" if !ARCH_MULTIPLATFORM
1603
1606
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
1576
1576
config ARCH_SUPPORTS_CRASH_DUMP
1577
1577
def_bool y
1578
1578
1579
+ config ARCH_DEFAULT_CRASH_DUMP
1580
+ def_bool y
1581
+
1579
1582
config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION
1580
1583
def_bool CRASH_RESERVE
1581
1584
Original file line number Diff line number Diff line change @@ -604,6 +604,9 @@ config ARCH_SUPPORTS_KEXEC
604
604
config ARCH_SUPPORTS_CRASH_DUMP
605
605
def_bool y
606
606
607
+ config ARCH_DEFAULT_CRASH_DUMP
608
+ def_bool y
609
+
607
610
config ARCH_SELECTS_CRASH_DUMP
608
611
def_bool y
609
612
depends on CRASH_DUMP
Original file line number Diff line number Diff line change @@ -2876,6 +2876,9 @@ config ARCH_SUPPORTS_KEXEC
2876
2876
config ARCH_SUPPORTS_CRASH_DUMP
2877
2877
def_bool y
2878
2878
2879
+ config ARCH_DEFAULT_CRASH_DUMP
2880
+ def_bool y
2881
+
2879
2882
config PHYSICAL_START
2880
2883
hex "Physical address where the kernel is loaded"
2881
2884
default "0xffffffff84000000"
Original file line number Diff line number Diff line change @@ -684,6 +684,10 @@ config RELOCATABLE_TEST
684
684
config ARCH_SUPPORTS_CRASH_DUMP
685
685
def_bool PPC64 || PPC_BOOK3S_32 || PPC_85xx || (44x && !SMP)
686
686
687
+ config ARCH_DEFAULT_CRASH_DUMP
688
+ bool
689
+ default y if !PPC_BOOK3S_32
690
+
687
691
config ARCH_SELECTS_CRASH_DUMP
688
692
def_bool y
689
693
depends on CRASH_DUMP
Original file line number Diff line number Diff line change @@ -898,6 +898,9 @@ config ARCH_SUPPORTS_KEXEC_PURGATORY
898
898
config ARCH_SUPPORTS_CRASH_DUMP
899
899
def_bool y
900
900
901
+ config ARCH_DEFAULT_CRASH_DUMP
902
+ def_bool y
903
+
901
904
config ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION
902
905
def_bool CRASH_RESERVE
903
906
Original file line number Diff line number Diff line change @@ -276,6 +276,9 @@ config ARCH_SUPPORTS_CRASH_DUMP
276
276
This option also enables s390 zfcpdump.
277
277
See also <file:Documentation/arch/s390/zfcpdump.rst>
278
278
279
+ config ARCH_DEFAULT_CRASH_DUMP
280
+ def_bool y
281
+
279
282
menu "Processor type and features"
280
283
281
284
config HAVE_MARCH_Z10_FEATURES
Original file line number Diff line number Diff line change @@ -550,6 +550,9 @@ config ARCH_SUPPORTS_KEXEC
550
550
config ARCH_SUPPORTS_CRASH_DUMP
551
551
def_bool BROKEN_ON_SMP
552
552
553
+ config ARCH_DEFAULT_CRASH_DUMP
554
+ def_bool y
555
+
553
556
config ARCH_SUPPORTS_KEXEC_JUMP
554
557
def_bool y
555
558
Original file line number Diff line number Diff line change @@ -2084,6 +2084,9 @@ config ARCH_SUPPORTS_KEXEC_JUMP
2084
2084
config ARCH_SUPPORTS_CRASH_DUMP
2085
2085
def_bool X86_64 || (X86_32 && HIGHMEM)
2086
2086
2087
+ config ARCH_DEFAULT_CRASH_DUMP
2088
+ def_bool y
2089
+
2087
2090
config ARCH_SUPPORTS_CRASH_HOTPLUG
2088
2091
def_bool y
2089
2092
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ config KEXEC_JUMP
97
97
98
98
config CRASH_DUMP
99
99
bool "kernel crash dumps"
100
- default y
100
+ default ARCH_DEFAULT_CRASH_DUMP
101
101
depends on ARCH_SUPPORTS_CRASH_DUMP
102
102
depends on KEXEC_CORE
103
103
select VMCORE_INFO
You can’t perform that action at this time.
0 commit comments