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. Signed-off-by: Dave Young <dyoung at redhat.com> --- kexec/arch/arm/Makefile | 1 + 1 file changed, 1 insertion(+) --- kexec-tools.orig/kexec/arch/arm/Makefile +++ kexec-tools/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 \