mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-10 10:05:19 +07:00
![Philipp Rudo](/assets/img/avatar_default.png)
The common code expects the architecture to have a purgatory that runs between the two kernels. Add it now. For simplicity first skip crash support. Signed-off-by: Philipp Rudo <prudo@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
12 lines
323 B
Makefile
12 lines
323 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y += kernel/
|
|
obj-y += mm/
|
|
obj-$(CONFIG_KVM) += kvm/
|
|
obj-y += crypto/
|
|
obj-$(CONFIG_S390_HYPFS_FS) += hypfs/
|
|
obj-$(CONFIG_APPLDATA_BASE) += appldata/
|
|
obj-y += net/
|
|
obj-$(CONFIG_PCI) += pci/
|
|
obj-$(CONFIG_NUMA) += numa/
|
|
obj-$(CONFIG_ARCH_HAS_KEXEC_PURGATORY) += purgatory/
|