Hi Dave, On Tue, Aug 09, 2016 at 03:57:47PM +0800, Dave Young wrote: > Hi, Simon > > On 08/08/16 at 12:34pm, Simon Horman wrote: > > Hi all, > > > > I am happy to announce the release of kexec-tools 2.0.13. > > > > This is a feature release coinciding with the release of the v4.7 Linux Kernel[*]. > > > > This release can be downloaded from kernel.org: > > > > http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.13.tar.xz > > The tarball can not build on armv7, below patch should fix it: > -- > kexec-tools armv7 build fix > > armv7 build failed as below: > > kexec/arch/arm/phys_to_virt.c:3:26: fatal error: phys_to_virt.h: No such file or directory > #include "phys_to_virt.h" > ^ > Ditto for kexec/arch/arm/iomem.h > > Add them to dist make target to fix it. Sorry for letting that slip through and double sorry for not responding for so long. I have applied the following: From: Dave Young <dyoung@xxxxxxxxxx> Date: Tue, 9 Aug 2016 15:57:47 +0800 Subject: [PATCH] arm: include phys_to_virt.h and iomem.h in distribution These files are required to build kexec-tools on arm. Signed-off-by: Dave Young <dyoung at redhat.com> [simon: added changelog] Signed-off-by: Simon Horman <horms at verge.net.au> --- kexec/arch/arm/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kexec/arch/arm/Makefile b/kexec/arch/arm/Makefile index 71db8c32ce13..871979e0ae26 100644 --- a/kexec/arch/arm/Makefile +++ b/kexec/arch/arm/Makefile @@ -27,6 +27,8 @@ arm_KEXEC_SRCS += $(libfdt_SRCS) arm_UIMAGE = kexec/kexec-uImage.c arm_PHYS_TO_VIRT = kexec/arch/arm/phys_to_virt.c +arm_PHYS_TO_VIRT += kexec/arch/arm/iomem.h +arm_PHYS_TO_VIRT += kexec/arch/arm/phys_to_virt.h dist += kexec/arch/arm/Makefile $(arm_KEXEC_SRCS) $(arm_PHYS_TO_VIRT) \ kexec/arch/arm/crashdump-arm.h kexec/arch/arm/kexec-arm.h \ -- 2.7.0.rc3.207.g0ac5344