diff options
author | Eric DeVolder <eric.devolder@oracle.com> | 2023-07-12 12:15:45 -0400 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-08-18 10:18:54 -0700 |
commit | e6265fe7775ec51241850abc854c9652d4709996 (patch) | |
tree | f572b549a1deee6b45d73c9f3b021a8a3e2e2386 /arch/riscv/Kbuild | |
parent | 40445d060152845f9023f5404d4b5f7bd7f11f39 (diff) | |
download | lwn-e6265fe7775ec51241850abc854c9652d4709996.tar.gz lwn-e6265fe7775ec51241850abc854c9652d4709996.zip |
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/riscv/Kbuild')
-rw-r--r-- | arch/riscv/Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/Kbuild b/arch/riscv/Kbuild index afa83e307a2e..d25ad1c19f88 100644 --- a/arch/riscv/Kbuild +++ b/arch/riscv/Kbuild @@ -5,7 +5,7 @@ obj-$(CONFIG_BUILTIN_DTB) += boot/dts/ obj-y += errata/ obj-$(CONFIG_KVM) += kvm/ -obj-$(CONFIG_ARCH_HAS_KEXEC_PURGATORY) += purgatory/ +obj-$(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) += purgatory/ # for cleaning subdir- += boot |