kernel: improve profiling support, keep static symbols when profiling is enabled
[openwrt.git] / scripts / strip-kmod.sh
index 789364f..2a75e39 100755 (executable)
@@ -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 \
This page took 0.02975 seconds and 4 git commands to generate.