mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
793b08e2ef
arch/powerpc/kernel/ contains 8 files dedicated to kexec. Move them into a dedicated subdirectory. Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> [mpe: Move to a/p/kexec, drop the 'machine' naming and use 'core' instead] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/afbef97ec6a978574a5cf91a4441000e0a9da42a.1572351221.git.christophe.leroy@c-s.fr
18 lines
382 B
Makefile
18 lines
382 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
|
|
|
|
obj-y += kernel/
|
|
obj-y += mm/
|
|
obj-y += lib/
|
|
obj-y += sysdev/
|
|
obj-y += platforms/
|
|
obj-y += math-emu/
|
|
obj-y += crypto/
|
|
obj-y += net/
|
|
|
|
obj-$(CONFIG_XMON) += xmon/
|
|
obj-$(CONFIG_KVM) += kvm/
|
|
|
|
obj-$(CONFIG_PERF_EVENTS) += perf/
|
|
obj-$(CONFIG_KEXEC_CORE) += kexec/
|
|
obj-$(CONFIG_KEXEC_FILE) += purgatory/
|