From: Mahesh Salgaonkar <mahesh@xxxxxxxxxxxxxxxxxx> The latest commit 5e48916 has removed a line from purgatory/Makefile that was responsible for building arch specific purgatory code. This causes kexec -p (loading of panic kernel) to fail. This patch reverts the deleted line. Verified this fix on x86_64 and ppc64. Signed-off-by: Mahesh Salgaonkar <mahesh at linux.vnet.ibm.com> --- purgatory/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/purgatory/Makefile b/purgatory/Makefile index 711799b..ee1679c 100644 --- a/purgatory/Makefile +++ b/purgatory/Makefile @@ -27,6 +27,8 @@ include $(srcdir)/purgatory/arch/s390/Makefile include $(srcdir)/purgatory/arch/sh/Makefile include $(srcdir)/purgatory/arch/x86_64/Makefile +PURGATORY_SRCS+=$($(ARCH)_PURGATORY_SRCS) + PURGATORY_OBJS = $(call objify, $(PURGATORY_SRCS)) purgatory/sha256.o PURGATORY_DEPS = $(call depify, $(PURGATORY_OBJS))