diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-12-18 10:20:15 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-12-18 10:20:15 +0000 |
commit | 50b5b2b4ee7e75c5a01bbb9cd03fd51b765f2d22 (patch) | |
tree | fb5df2edeaa47c065937e4464f1e2f6d09776a5b /util | |
parent | 1a4d90078a60b717cd64250c3c8f5f189c0034c6 (diff) |
- speed up board comparison by only building abuild configs, not the whole
target.
- use a template for mktemp (fixes OSX error)
- convert all numbers to hex to make comparison easier.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4982 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/compareboard/compareboard | 13 | ||||
-rwxr-xr-x | util/kbuildall/kbuildall | 2 |
2 files changed, 12 insertions, 3 deletions
diff --git a/util/compareboard/compareboard b/util/compareboard/compareboard index 09cd32987d..17295675d2 100755 --- a/util/compareboard/compareboard +++ b/util/compareboard/compareboard @@ -16,7 +16,7 @@ done BOARDPATH=`echo $1 | sed s,/,_,g` -A=`mktemp` +A=`mktemp tmp.XXXXXXXXXX` rm -rf $A mkdir -p $A @@ -92,6 +92,15 @@ sed \ normalize $A/old.filtered > $A/old.normalized normalize $A/new.filtered > $A/new.normalized -diff -u $A/old.normalized $A/new.normalized |grep ^[+-][^+-]|sed -e "s,^+,p ," -e "s,^-,m ," |sort -k2,2 -k1,1 |sed -e "s,^p ,+," -e "s,^m ,-," +diff -u $A/old.normalized $A/new.normalized | \ + grep ^[+-][^+-] | \ + sed -e "s,^+,p ," -e "s,^-,m ," | \ + sort -k2,2 -k1,1 | \ + sed -e "s,^p ,+," -e "s,^m ,-," | \ + while read line; do + key=`echo $line|cut -f1 -d\=` + value=`echo $line|cut -f2 -d\= | tr -d \\;` + printf "%s = 0x%x\n" "$key" $value + done rm -rf $A diff --git a/util/kbuildall/kbuildall b/util/kbuildall/kbuildall index 3f2d7b4b0b..3d16950866 100755 --- a/util/kbuildall/kbuildall +++ b/util/kbuildall/kbuildall @@ -61,7 +61,7 @@ for dir in $ALLTARGETS; do result=`$MAKE > $TARGETDIR/$name.buildcoreboot.log 2>&1 && echo ok || echo fail` echo "$result." if [ "$result" = "ok" ]; then - util/abuild/abuild -t $dir + util/abuild/abuild -C -t $dir sh util/compareboard/compareboard $dir | tee $TARGETDIR/$name.variables.txt fi echo "$dir $result" >> $TARGETDIR/_overview.txt |