[PATCH 3/3] scripts/trylink: honour SKIP_STRIP and don't strip if requested to

Marc Kleine-Budde mkl at pengutronix.de
Wed Jun 10 09:26:57 UTC 2015


Signed-off-by: Marc Kleine-Budde <mkl at pengutronix.de>
---
 scripts/trylink | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/scripts/trylink b/scripts/trylink
index 48c487bcd30f..d22f6f25cb52 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -241,7 +241,12 @@ if test "$CONFIG_BUILD_LIBBUSYBOX" = y; then
 	cat $EXE.out
 	exit 1
     }
-    $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
+    if test "$SKIP_STRIP" = "y"; then
+	cp $EXE "$sharedlib_dir/libbusybox.so.$BB_VER"
+    else
+	$STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
+    fi
+
     chmod a+x "$sharedlib_dir/libbusybox.so.$BB_VER"
     echo "libbusybox: $sharedlib_dir/libbusybox.so.$BB_VER"
 fi
@@ -262,7 +267,11 @@ if test "$CONFIG_FEATURE_SHARED_BUSYBOX" = y; then
 	cat $EXE.out
 	exit 1
     }
-    $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
+    if test "$SKIP_STRIP" = "y"; then
+	cp $EXE "$sharedlib_dir/busybox"
+    else
+	$STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
+    fi
     echo "busybox linked against libbusybox: $sharedlib_dir/busybox"
 fi
 
@@ -299,7 +308,9 @@ int main(int argc, char **argv)
 	    exit 1
 	}
 	rm -- "$sharedlib_dir/applet.c" $EXE.out
-	$STRIP -s --remove-section=.note --remove-section=.comment $EXE
+	if test "$SKIP_STRIP" != "y"; then
+	    $STRIP -s --remove-section=.note --remove-section=.comment $EXE
+	fi
 	# Let user see that we do something - list the names of created binaries:
 	echo "$EXE"
 
-- 
2.1.4



More information about the busybox mailing list