projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
brcm47xx: add missing breaks into the nvram read code in the switch case statements
[openwrt.git]
/
scripts
/
strip-kmod.sh
diff --git
a/scripts/strip-kmod.sh
b/scripts/strip-kmod.sh
index
789364f
..
13e6b58
100755
(executable)
--- a/
scripts/strip-kmod.sh
+++ b/
scripts/strip-kmod.sh
@@
-12,7
+12,11
@@
MODULE="$1"
}
ARGS=
}
ARGS=
-[ -n "$KEEP_SYMBOLS" ] || ARGS="-x -G __this_module --strip-unneeded"
+if [ -n "$KEEP_SYMBOLS" ]; then
+ ARGS="-X --strip-debug"
+else
+ ARGS="-x -G __this_module --strip-unneeded"
+fi
${CROSS}objcopy \
-R .comment \
${CROSS}objcopy \
-R .comment \
@@
-34,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.020347 seconds
and
4
git commands to generate.