From ce9d37cff0195e236004fc06b3a3eb6b2dfafefa Mon Sep 17 00:00:00 2001 From: Mahesh Salgaonkar Date: Thu, 6 Sep 2012 14:43:55 +0530 Subject: kexec: Fix the purgatory Makefile to build arch specific purgatory code. 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 Signed-off-by: Simon Horman --- 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)) -- cgit