From ab3a70af85679bbc5efe63057c7f65365ed6e748 Mon Sep 17 00:00:00 2001 From: Ming Wang Date: Wed, 11 Oct 2023 11:56:21 +0800 Subject: kexec/loongarch64: fix 'make dist' file loss issue The Makefile omits the iomem.h file, causing the archive file generated by 'make dist' to lose iomem.h. This patch is used to fix this problem. Signed-off-by: Ming Wang Signed-off-by: Simon Horman --- kexec/arch/loongarch/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/kexec/arch/loongarch/Makefile b/kexec/arch/loongarch/Makefile index cee7e569..f91d0baf 100644 --- a/kexec/arch/loongarch/Makefile +++ b/kexec/arch/loongarch/Makefile @@ -19,5 +19,6 @@ loongarch_VIRT_TO_PHYS = dist += kexec/arch/loongarch/Makefile $(loongarch_KEXEC_SRCS) \ kexec/arch/loongarch/kexec-loongarch.h \ kexec/arch/loongarch/image-header.h \ + kexec/arch/loongarch/iomem.h \ kexec/arch/loongarch/crashdump-loongarch.h \ kexec/arch/loongarch/include/arch/options.h -- cgit 1.2.3-korg