kernel: keep more symbols in the kernel modules when doing profiling
[openwrt/svn-archive/archive.git] / scripts / strip-kmod.sh
index 57207e3ae6c36e66e9fd11d63ad266263f0ff959..789364f97bbced62345dc5af179142522640a711 100755 (executable)
@@ -11,16 +11,18 @@ MODULE="$1"
        exit 1
 }
 
+ARGS=
+[ -n "$KEEP_SYMBOLS" ] || ARGS="-x -G __this_module --strip-unneeded"
+
 ${CROSS}objcopy \
-       --strip-unneeded \
        -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"