Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/scripts/objsizes

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (show annotations) (download)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File size: 578 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 #!/bin/sh
2
3 t_text=0
4 t_data=0
5 t_bss=0
6
7 printf "%9s %11s %9s %9s %s\n" "text+data" "text+rodata" rwdata bss filename
8
9 find -name '*.o' | grep -v '^\./scripts/' | grep -vF built-in.o \
10 | sed 's:^\./::' | xargs "${CROSS_COMPILE}size" | grep '^ *[0-9]' \
11 | {
12 while read text data bss dec hex filename; do
13 t_text=$((t_text+text))
14 t_data=$((t_data+data))
15 t_bss=$((t_bss+bss))
16 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
17 done
18 printf "%9d %11d %9d %9d %s\n" $((t_text+t_data)) $t_text $t_data $t_bss "TOTAL"
19 } | env -uLANG -uLC_ALL sort -r

Properties

Name Value
svn:executable *