linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Make x86 use $TARGET-readelf like all the other arches.
@ 2017-05-20 20:03 Rob Landley
  2017-05-20 23:46 ` Kees Cook
  2017-05-21 11:07 ` [tip:x86/urgent] x86/boot: Use CROSS_COMPILE prefix for readelf tip-bot for Rob Landley
  0 siblings, 2 replies; 3+ messages in thread
From: Rob Landley @ 2017-05-20 20:03 UTC (permalink / raw)
  To: H. Peter Anvin, Thomas Gleixner, Ingo Molnar, x86, Jiri Kosina,
	Paul Bolle, Kees Cook, H.J. Lu, linux-kernel

From: Rob Landley <rob@landley.net>

My cross-compile environment doesn't provide an unprefixed
readelf in the $PATH, which works fine on every target but x86,
where you get a bunch of "/bin/sh: 1: readelf: not found"
messages (but the result still works anyway).

Signed-off-by: Rob Landley <rob@landley.net>
---

 arch/x86/boot/compressed/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile
index 44163e8..2c860ad 100644
--- a/arch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -94,7 +94,7 @@ vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o
 quiet_cmd_check_data_rel = DATAREL $@
 define cmd_check_data_rel
 	for obj in $(filter %.o,$^); do \
-		readelf -S $$obj | grep -qF .rel.local && { \
+		${CROSS_COMPILE}readelf -S $$obj | grep -qF .rel.local && { \
 			echo "error: $$obj has data relocations!" >&2; \
 			exit 1; \
 		} || true; \

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

* Re: [PATCH] Make x86 use $TARGET-readelf like all the other arches.
  2017-05-20 20:03 [PATCH] Make x86 use $TARGET-readelf like all the other arches Rob Landley
@ 2017-05-20 23:46 ` Kees Cook
  2017-05-21 11:07 ` [tip:x86/urgent] x86/boot: Use CROSS_COMPILE prefix for readelf tip-bot for Rob Landley
  1 sibling, 0 replies; 3+ messages in thread
From: Kees Cook @ 2017-05-20 23:46 UTC (permalink / raw)
  To: Rob Landley
  Cc: H. Peter Anvin, Thomas Gleixner, Ingo Molnar, x86, Jiri Kosina,
	Paul Bolle, H.J. Lu, LKML

On Sat, May 20, 2017 at 1:03 PM, Rob Landley <rob@landley.net> wrote:
> From: Rob Landley <rob@landley.net>
>
> My cross-compile environment doesn't provide an unprefixed
> readelf in the $PATH, which works fine on every target but x86,
> where you get a bunch of "/bin/sh: 1: readelf: not found"
> messages (but the result still works anyway).
>
> Signed-off-by: Rob Landley <rob@landley.net>

Ooops, thanks for the catch!

Acked-by: Kees Cook <keescook@chromium.org>

-Kees

> ---
>
>  arch/x86/boot/compressed/Makefile |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile
> index 44163e8..2c860ad 100644
> --- a/arch/x86/boot/compressed/Makefile
> +++ b/arch/x86/boot/compressed/Makefile
> @@ -94,7 +94,7 @@ vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o
>  quiet_cmd_check_data_rel = DATAREL $@
>  define cmd_check_data_rel
>         for obj in $(filter %.o,$^); do \
> -               readelf -S $$obj | grep -qF .rel.local && { \
> +               ${CROSS_COMPILE}readelf -S $$obj | grep -qF .rel.local && { \
>                         echo "error: $$obj has data relocations!" >&2; \
>                         exit 1; \
>                 } || true; \



-- 
Kees Cook
Pixel Security

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

* [tip:x86/urgent] x86/boot: Use CROSS_COMPILE prefix for readelf
  2017-05-20 20:03 [PATCH] Make x86 use $TARGET-readelf like all the other arches Rob Landley
  2017-05-20 23:46 ` Kees Cook
@ 2017-05-21 11:07 ` tip-bot for Rob Landley
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Rob Landley @ 2017-05-21 11:07 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: keescook, hjl.tools, pebolle, tglx, mingo, rob, hpa,
	linux-kernel, jkosina

Commit-ID:  3780578761921f094179c6289072a74b2228c602
Gitweb:     http://git.kernel.org/tip/3780578761921f094179c6289072a74b2228c602
Author:     Rob Landley <rob@landley.net>
AuthorDate: Sat, 20 May 2017 15:03:29 -0500
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Sun, 21 May 2017 13:04:27 +0200

x86/boot: Use CROSS_COMPILE prefix for readelf

The boot code Makefile contains a straight 'readelf' invocation. This
causes build warnings in cross compile environments, when there is no
unprefixed readelf accessible via $PATH.

Add the missing $(CROSS_COMPILE) prefix.

[ tglx: Rewrote changelog ]

Fixes: 98f78525371b ("x86/boot: Refuse to build with data relocations")
Signed-off-by: Rob Landley <rob@landley.net>
Acked-by: Kees Cook <keescook@chromium.org>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Paul Bolle <pebolle@tiscali.nl>
Cc: "H.J. Lu" <hjl.tools@gmail.com>
Cc: stable@vger.kernel.org
Link: http://lkml.kernel.org/r/ced18878-693a-9576-a024-113ef39a22c0@landley.net
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
 arch/x86/boot/compressed/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile
index 44163e8..2c860ad 100644
--- a/arch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -94,7 +94,7 @@ vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o
 quiet_cmd_check_data_rel = DATAREL $@
 define cmd_check_data_rel
 	for obj in $(filter %.o,$^); do \
-		readelf -S $$obj | grep -qF .rel.local && { \
+		${CROSS_COMPILE}readelf -S $$obj | grep -qF .rel.local && { \
 			echo "error: $$obj has data relocations!" >&2; \
 			exit 1; \
 		} || true; \

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

end of thread, other threads:[~2017-05-21 11:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-20 20:03 [PATCH] Make x86 use $TARGET-readelf like all the other arches Rob Landley
2017-05-20 23:46 ` Kees Cook
2017-05-21 11:07 ` [tip:x86/urgent] x86/boot: Use CROSS_COMPILE prefix for readelf tip-bot for Rob Landley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).