kernel: improve profiling support, keep static symbols when profiling is enabled

SVN-Revision: 30964
This commit is contained in:
Felix Fietkau
2012-03-17 13:03:14 +00:00
parent 9b60eb478a
commit 7b609a31be
3 changed files with 7 additions and 3 deletions

View File

@@ -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 \