diff options
author | Eric DeVolder <eric.devolder@oracle.com> | 2023-07-12 19:15:45 +0300 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-08-18 20:18:54 +0300 |
commit | e6265fe7775ec51241850abc854c9652d4709996 (patch) | |
tree | f572b549a1deee6b45d73c9f3b021a8a3e2e2386 /arch/s390 | |
parent | 40445d060152845f9023f5404d4b5f7bd7f11f39 (diff) | |
download | linux-e6265fe7775ec51241850abc854c9652d4709996.tar.xz |
kexec: rename ARCH_HAS_KEXEC_PURGATORY
The Kconfig refactor to consolidate KEXEC and CRASH options utilized
option names of the form ARCH_SUPPORTS_<option>. Thus rename the
ARCH_HAS_KEXEC_PURGATORY to ARCH_SUPPORTS_KEXEC_PURGATORY to follow
the same.
Link: https://lkml.kernel.org/r/20230712161545.87870-15-eric.devolder@oracle.com
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/Kbuild | 2 | ||||
-rw-r--r-- | arch/s390/Kconfig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/Kbuild b/arch/s390/Kbuild index 76e362277179..48a3588d703c 100644 --- a/arch/s390/Kbuild +++ b/arch/s390/Kbuild @@ -7,7 +7,7 @@ obj-$(CONFIG_S390_HYPFS_FS) += hypfs/ obj-$(CONFIG_APPLDATA_BASE) += appldata/ obj-y += net/ obj-$(CONFIG_PCI) += pci/ -obj-$(CONFIG_ARCH_HAS_KEXEC_PURGATORY) += purgatory/ +obj-$(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) += purgatory/ # for cleaning subdir- += boot tools diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 40beaf1f3d73..ab723218c0fb 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig @@ -257,7 +257,7 @@ config ARCH_SUPPORTS_KEXEC_FILE config ARCH_SUPPORTS_KEXEC_SIG def_bool MODULE_SIG_FORMAT -config ARCH_HAS_KEXEC_PURGATORY +config ARCH_SUPPORTS_KEXEC_PURGATORY def_bool KEXEC_FILE config ARCH_SUPPORTS_CRASH_DUMP |