forked from Xilinx/linux-xlnx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc/kexec: Move kexec files into a dedicated subdir.
arch/powerpc/kernel/ contains 8 files dedicated to kexec. Move them into a dedicated subdirectory. Signed-off-by: Christophe Leroy <[email protected]> [mpe: Move to a/p/kexec, drop the 'machine' naming and use 'core' instead] Signed-off-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/afbef97ec6a978574a5cf91a4441000e0a9da42a.1572351221.git.christophe.leroy@c-s.fr
- Loading branch information
Showing
11 changed files
with
27 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# | ||
# Makefile for the linux kernel. | ||
# | ||
|
||
# Disable clang warning for using setjmp without setjmp.h header | ||
CFLAGS_crash.o += $(call cc-disable-warning, builtin-requires-header) | ||
|
||
obj-y += core.o crash.o core_$(BITS).o | ||
|
||
obj-$(CONFIG_PPC32) += relocate_32.o | ||
|
||
obj-$(CONFIG_KEXEC_FILE) += file_load.o elf_$(BITS).o | ||
|
||
ifdef CONFIG_HAVE_IMA_KEXEC | ||
ifdef CONFIG_IMA | ||
obj-y += ima.o | ||
endif | ||
endif | ||
|
||
|
||
# Disable GCOV, KCOV & sanitizers in odd or sensitive code | ||
GCOV_PROFILE_core_$(BITS).o := n | ||
KCOV_INSTRUMENT_core_$(BITS).o := n | ||
UBSAN_SANITIZE_core_$(BITS).o := n |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters