mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
736e30af58
This patch adds purgatory, the name and concept have been taken from kexec-tools. Purgatory runs between two kernels, and do verify sha256 hash to ensure the kernel to jump to is fine and has not been corrupted after loading. Makefile is modified based on x86 platform. Signed-off-by: Li Zhengyu <lizhengyu3@huawei.com> Link: https://lore.kernel.org/r/20220408100914.150110-6-lizhengyu3@huawei.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
10 lines
192 B
Makefile
10 lines
192 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
obj-y += kernel/ mm/ net/
|
|
obj-$(CONFIG_BUILTIN_DTB) += boot/dts/
|
|
|
|
obj-$(CONFIG_ARCH_HAS_KEXEC_PURGATORY) += purgatory/
|
|
|
|
# for cleaning
|
|
subdir- += boot
|