summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.20.2/0203-scripts-trylink-honour-SKIP_STRIP-and-don-t-strip-if.patch
blob: ebd9790a29415a665c78fe9995135063f16e7a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: Mon, 4 Feb 2013 14:39:00 +0100
Subject: [PATCH] scripts/trylink: honour SKIP_STRIP and don't strip if
 requested to

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

diff --git a/scripts/trylink b/scripts/trylink
index a8b0b2e..d9852e8 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
 
     done <applet_lst.tmp
 fi