2006-10-10 22:38:29 +00:00
|
|
|
#!/usr/bin/env bash
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-04-21 08:33:23 +00:00
|
|
|
SELF=${0##*/}
|
|
|
|
|
|
|
|
[ -z "$STRIP" ] && {
|
|
|
|
echo "$SELF: strip command not defined (STRIP variable not set)"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
TARGETS=$*
|
|
|
|
|
|
|
|
[ -z "$TARGETS" ] && {
|
|
|
|
echo "$SELF: no directories / files specified"
|
|
|
|
echo "usage: $SELF [PATH...]"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2006-05-31 20:06:46 +00:00
|
|
|
find $TARGETS -type f -a -exec file {} \; | \
|
2006-06-22 00:07:36 +00:00
|
|
|
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|relocatable\|shared object\).*,.* stripped/\1:\2/p' | \
|
2005-04-21 08:33:23 +00:00
|
|
|
(
|
|
|
|
IFS=":"
|
|
|
|
while read F S; do
|
|
|
|
echo "$SELF: $F:$S"
|
2009-03-02 17:33:02 +00:00
|
|
|
[ "${S}" = "relocatable" ] && {
|
2012-02-20 17:38:26 +00:00
|
|
|
eval "$STRIP_KMOD $F"
|
2007-02-09 16:24:34 +00:00
|
|
|
} || {
|
2009-04-21 01:10:21 +00:00
|
|
|
b=$(stat -c '%a' $F)
|
2006-05-31 20:06:46 +00:00
|
|
|
eval "$STRIP $F"
|
2009-04-21 01:10:21 +00:00
|
|
|
a=$(stat -c '%a' $F)
|
|
|
|
[ "$a" = "$b" ] || chmod $b $F
|
2007-02-09 16:24:34 +00:00
|
|
|
}
|
2005-04-21 08:33:23 +00:00
|
|
|
done
|
2007-01-20 01:17:28 +00:00
|
|
|
true
|
2005-04-21 08:33:23 +00:00
|
|
|
)
|