All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] kexec: fix build when BR2_STRIP_none=y
@ 2016-12-02 11:51 Marcin Nowakowski
  2016-12-02 16:11 ` Peter Korsgaard
  0 siblings, 1 reply; 8+ messages in thread
From: Marcin Nowakowski @ 2016-12-02 11:51 UTC (permalink / raw)
  To: buildroot

When BR2_STRIP is set to none, a dummy 'true' app is used instead of
strip utility. However, kexec package always requires a real strip
executable as it is used to generate intermediate files during the build
process.

If 'true' is used the build system runs the following command:

true --strip-debug -o purgatory/purgatory.ro purgatory/purgatory.ro.sym

which obviously doesn't do anything useful and the build later fails
with:

bin/bin-to-hex purgatory < purgatory/purgatory.ro > kexec/purgatory.c
/bin/sh: purgatory/purgatory.ro: No such file or directory
kexec/Makefile:7: recipe for target 'kexec/purgatory.c' failed
make[2]: *** [kexec/purgatory.c] Error 1

To resolve it always specify STRIP=$(CROSS_COMPILE)strip, regardless of
buildroot configuration.

Signed-off-by: Marcin Nowakowski <marcin.nowakowski@imgtec.com>
---
 package/kexec/kexec.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/kexec/kexec.mk b/package/kexec/kexec.mk
index 4ca55e5..08c5424 100644
--- a/package/kexec/kexec.mk
+++ b/package/kexec/kexec.mk
@@ -10,6 +10,8 @@ KEXEC_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kexec
 KEXEC_LICENSE = GPLv2
 KEXEC_LICENSE_FILES = COPYING
 
+KEXEC_MAKE_OPTS = STRIP="$(TARGET_CROSS)strip"
+
 ifeq ($(BR2_PACKAGE_KEXEC_ZLIB),y)
 KEXEC_CONF_OPTS += --with-zlib
 KEXEC_DEPENDENCIES = zlib
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-12-07  7:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-02 11:51 [Buildroot] [PATCH] kexec: fix build when BR2_STRIP_none=y Marcin Nowakowski
2016-12-02 16:11 ` Peter Korsgaard
2016-12-02 20:38   ` Thomas Petazzoni
2016-12-02 21:09     ` Peter Korsgaard
2016-12-02 21:34       ` Thomas Petazzoni
2016-12-05 22:34         ` Peter Korsgaard
2016-12-06 23:48           ` Arnout Vandecappelle
2016-12-07  7:23             ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.