]> git.ipfire.org Git - ipfire-2.x.git/blob - src/stripper
Merge remote-tracking branch 'origin/kernel-update' into glibc-update2
[ipfire-2.x.git] / src / stripper
1 #!/bin/bash
2
3 function _strip() {
4 local file=${1}
5
6 local cmd="${STRIP-strip}"
7
8 case "$(file -bi ${file})" in
9 application/x-sharedlib*)
10 cmd="${cmd} --strip-debug --remove-section=.comment --remove-section=.note"
11 ;;
12 *)
13 cmd="${cmd} --strip-unneeded"
14 ;;
15 esac
16
17 echo "Stripping ${file}..."
18 ${cmd} ${file}
19 }
20
21 for dir in $@; do
22 find ${dir} -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) \
23 | file -N -f - | sed -n -e 's/^\(.*\):[ ]*.*ELF.*, not stripped/\1/p' |
24 while read file; do
25 _strip ${file}
26 done
27 done