aboutgitcode
diff options
context:
space:
mode:
-rwxr-xr-xmbuto6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbuto b/mbuto
index b4a7cc0..0e8aa79 100755
--- a/mbuto
+++ b/mbuto
@@ -257,7 +257,7 @@ profile_kselftests() {
KMODS="$(${FIND} "${MODDIR}" ${__find_pattern} | ${TR} '\n' ' ')"
- workers kmod_strip_worker
+ [ "${NOSTRIP}" != "y" ] && workers kmod_strip_worker
KMODS="$(${BASENAME} -a -s .ko ${KMODS})"
@@ -1079,7 +1079,7 @@ cmds() {
add "${arg}"
done
- [ "${STRIP}" != "n" ] && strip_all
+ [ "${NOSTRIP}" != "y" ] && strip_all
if [ -z "${ARCHIVEMOUNT}" ]; then
( __out="$("${REALPATH}" "${OUT}")"
@@ -1197,7 +1197,7 @@ fi
while getopts :c:df:k:m:p:s:vh __opt; do
case ${__opt} in
c) COMPRESS="${OPTARG}" ;;
- d) STRIP="n" ;;
+ d) NOSTRIP="y" ;;
f) OUT="${OPTARG}" ;;
k) KERNEL="${OPTARG}" ;;
m) MODDIR="${OPTARG}" ;;