Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/hush_leaktool.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (show annotations) (download) (as text)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File MIME type: application/x-sh
File size: 566 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 #!/bin/sh
2
3 # hush's stderr with leak debug enabled
4 output=output
5
6 freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs`
7
8 grep -v free "$output" >"$output.leaked"
9
10 i=8
11 list=
12 for freed in $freelist; do
13 list="$list -e $freed"
14 test $((--i)) != 0 && continue
15 echo Dropping $list
16 grep -F -v $list <"$output.leaked" >"$output.temp"
17 mv "$output.temp" "$output.leaked"
18 i=8
19 list=
20 done
21 if test "$list"; then
22 echo Dropping $list
23 grep -F -v $list <"$output.leaked" >"$output.temp"
24 mv "$output.temp" "$output.leaked"
25 fi

Properties

Name Value
svn:keywords Id