projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] dnsmasq: add missing config_get, localize variables, bump package revision
[openwrt.git]
/
scripts
/
strip-kmod.sh
diff --git
a/scripts/strip-kmod.sh
b/scripts/strip-kmod.sh
index
57207e3
..
13e6b58
100755
(executable)
--- a/
scripts/strip-kmod.sh
+++ b/
scripts/strip-kmod.sh
@@
-11,16
+11,22
@@
MODULE="$1"
exit 1
}
exit 1
}
+ARGS=
+if [ -n "$KEEP_SYMBOLS" ]; then
+ ARGS="-X --strip-debug"
+else
+ ARGS="-x -G __this_module --strip-unneeded"
+fi
+
${CROSS}objcopy \
${CROSS}objcopy \
- --strip-unneeded \
-R .comment \
-R .pdr \
-R .mdebug.abi32 \
-R .note.gnu.build-id \
-R .gnu.attributes \
-R .reginfo \
-R .comment \
-R .pdr \
-R .mdebug.abi32 \
-R .note.gnu.build-id \
-R .gnu.attributes \
-R .reginfo \
-
-G __this_module
\
-
-x
"$MODULE" "$MODULE.tmp"
+
$ARGS
\
+ "$MODULE" "$MODULE.tmp"
[ -n "$NO_RENAME" ] && {
mv "${MODULE}.tmp" "$MODULE"
[ -n "$NO_RENAME" ] && {
mv "${MODULE}.tmp" "$MODULE"
@@
-32,9
+38,10
@@
BEGIN {
n = 0
}
n = 0
}
-$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ {
+$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/
&& !def[$3]
{
print "--redefine-sym "$3"=_"n;
n = n + 1
print "--redefine-sym "$3"=_"n;
n = n + 1
+ def[$3] = 1
}
' > "$MODULE.tmp1"
}
' > "$MODULE.tmp1"
This page took
0.024727 seconds
and
4
git commands to generate.