diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-12 18:43:26 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-12 18:43:26 +0000 |
commit | b106f9bdbd02a7aafd7db0c198fc6a1112f1e412 (patch) | |
tree | 2a250d922bd653fe9e8d33bddc3bdfd358dc8864 /util/kbuildall | |
parent | 4d7ec68856aa2c8aed6d84905e71d6f28900d52d (diff) |
Add the compareboard utility which is useful for porting
to kconfig.
Hook it up to kbuildall, too
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4761 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/kbuildall')
-rwxr-xr-x | util/kbuildall/kbuildall | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/kbuildall/kbuildall b/util/kbuildall/kbuildall index b8d09948a9..3f2d7b4b0b 100755 --- a/util/kbuildall/kbuildall +++ b/util/kbuildall/kbuildall @@ -60,5 +60,9 @@ for dir in $ALLTARGETS; do builddefconfig $dir > $TARGETDIR/$name.buildconfig.log 2>&1 result=`$MAKE > $TARGETDIR/$name.buildcoreboot.log 2>&1 && echo ok || echo fail` echo "$result." + if [ "$result" = "ok" ]; then + util/abuild/abuild -t $dir + sh util/compareboard/compareboard $dir | tee $TARGETDIR/$name.variables.txt + fi echo "$dir $result" >> $TARGETDIR/_overview.txt done |