summaryrefslogtreecommitdiff
path: root/util/kbuildall
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-01-30 10:44:28 +0000
committerStefan Reinauer <stepan@openbios.org>2010-01-30 10:44:28 +0000
commit68003b8d14526e76709068569a1f207eeb69941a (patch)
treefc67f7429750fab5ba29cb0751b6bf6b68cc653c /util/kbuildall
parente37785791ae2be959cfe07962944745c81ca88f5 (diff)
downloadcoreboot-68003b8d14526e76709068569a1f207eeb69941a.tar.xz
add Kbuild support to abuild and enable it per default;
use -o/--oldconfig to get the old behavior (and use that option in kbuildall to get the old config) I changed the qa.coreboot.org autobuild system to use -o for now so we get build reports from the old and new config, still. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5066 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/kbuildall')
-rwxr-xr-xutil/kbuildall/kbuildall2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/kbuildall/kbuildall b/util/kbuildall/kbuildall
index 3d16950866..062b590798 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 -C -t $dir
+ util/abuild/abuild -o -C -t $dir
sh util/compareboard/compareboard $dir | tee $TARGETDIR/$name.variables.txt
fi
echo "$dir $result" >> $TARGETDIR/_overview.txt