]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
tools/env: change stripping strategy to allow no-stripping
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 27 Aug 2014 12:29:00 +0000 (14:29 +0200)
committerTom Rini <trini@ti.com>
Wed, 24 Sep 2014 22:30:27 +0000 (18:30 -0400)
commitbdc7dc4595646da8774f53a2c4f5a7599b0a5f16
tree9063c63726d8ef6edc9f8b56e4e79763872a1ef4
parente5bf9878ea743564bcc7a15a79654fe06731a1e2
tools/env: change stripping strategy to allow no-stripping

When building the U-Boot tools for non-ELF platforms (such as Blackfin
FLAT), since commit 79fc0c5f498c3982aa4740c273ab1a9255063d9c
("tools/env: cross-compile fw_printenv without setting HOSTCC"), the
build fails because it tries to strip a FLAT binary, which does not
make sense.

This commit solves this by changing the stripping logic in
tools/env/Makefile to be similar to the one in tools/Makefile. This
logic continues to apply strip to the final binary, but does not abort
the build if it fails, and does the stripping in place on the final
binary. This allows the logic to work fine if stripping doesn't work,
as it leaves the final binary untouched.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Sonic Zhang <sonic.zhang@analog.com>
Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Sonic Zhang <sonic.zhang@analog.com>
tools/env/Makefile