[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1356141525-25162-1-git-send-email-sboyd@codeaurora.org>
Date: Fri, 21 Dec 2012 17:58:45 -0800
From: Stephen Boyd <sboyd@...eaurora.org>
To: Michal Marek <mmarek@...e.cz>
Cc: linux-kernel@...r.kernel.org, linux-arm-msm@...r.kernel.org,
linux-kbuild@...r.kernel.org
Subject: [PATCH] Makefile: Make checkstack work with O= builds
The vmlinux doesn't always live in the same directory as the
source files and so 'make O=obj checkstack' fails with a missing
vmlinux file. Fix checkstack so that this is possible.
Signed-off-by: Stephen Boyd <sboyd@...eaurora.org>
---
It would also be nice if this depended on vmlinux and modules being built
already but I couldn't figure that part out.
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 4fe0559..54a386b 100644
--- a/Makefile
+++ b/Makefile
@@ -1318,7 +1318,7 @@ else
CHECKSTACK_ARCH := $(ARCH)
endif
checkstack:
- $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
+ $(OBJDUMP) -d $(objtree)/vmlinux $$(find $(objtree) -name '*.ko') | \
$(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
kernelrelease:
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists