mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
e6265fe777
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>
11 lines
240 B
Makefile
11 lines
240 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
obj-y += kernel/ mm/ net/
|
|
obj-$(CONFIG_BUILTIN_DTB) += boot/dts/
|
|
obj-y += errata/
|
|
obj-$(CONFIG_KVM) += kvm/
|
|
|
|
obj-$(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) += purgatory/
|
|
|
|
# for cleaning
|
|
subdir- += boot
|