X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=scripts%2Fstrip-kmod.sh;h=13e6b58007f92fa870afcb58da9ac88df7957c19;hp=789364f97bbced62345dc5af179142522640a711;hb=34ffb526a27dc3f1bf16cd6cdebbfa08c40a6d7a;hpb=236dd9d9a2c7563926ca0366e7dba3b60d89bcae diff --git a/scripts/strip-kmod.sh b/scripts/strip-kmod.sh index 789364f97b..13e6b58007 100755 --- a/scripts/strip-kmod.sh +++ b/scripts/strip-kmod.sh @@ -12,7 +12,11 @@ MODULE="$1" } 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 \ @@ -34,9 +38,10 @@ BEGIN { n = 0 } -$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ { +$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ && !def[$3] { print "--redefine-sym "$3"=_"n; n = n + 1 + def[$3] = 1 } ' > "$MODULE.tmp1"