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"
|
2006-05-31 20:06:46 +00:00
|
|
|
[ "${F##*\.}" = "o" -o "${F##*\.}" = "ko" ] && \
|
|
|
|
eval "$STRIP_KMOD $F" || \
|
|
|
|
eval "$STRIP $F"
|
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
|
|
|
)
|