X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/267cc36546d4741ed2b1bf63f6cae18bbfa3b2e2..58bb93069837d6d04bd62d70fa5d971862f7cf2d:/scripts/rstrip.sh diff --git a/scripts/rstrip.sh b/scripts/rstrip.sh index 6dd44f2ed..e42caa53a 100755 --- a/scripts/rstrip.sh +++ b/scripts/rstrip.sh @@ -45,10 +45,13 @@ find $TARGETS -type f -a -exec file {} \; | \ IFS=":" while read F S; do echo "$SELF: $F:$S" - [ "${F##*\.}" = "o" -o "${F##*\.}" = "ko" ] && { + [ "${S}" = "relocatable" ] && { eval "$STRIP_KMOD -w -K '__param*' -K '__mod*' $(find_modparams "$F")$F" } || { + b=$(stat -c '%a' $F) eval "$STRIP $F" + a=$(stat -c '%a' $F) + [ "$a" = "$b" ] || chmod $b $F } done true