Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1888
-gerrit commit 2413210254dbcd2ef8e1d60e7a3ac80ebc8b7c68 Author: Patrick Georgi <[email protected]> Date: Thu Nov 22 14:19:43 2012 +0100 abuild: only rebuild boards if requested or after a broken build That used to be the behaviour, and it's quite useful to incrementally fix bugs across the tree. Change-Id: I3e30cbdcf01631bc29f892054caa3babb0969beb Signed-off-by: Patrick Georgi <[email protected]> --- util/abuild/abuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/abuild/abuild b/util/abuild/abuild index d69d402..9591d13 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -298,6 +298,12 @@ function build_target CONFIG=$3 TARCH=$( architecture $VENDOR $MAINBOARD ) + if [ "`cat $TOP/$TARGET/${VENDOR}_${MAINBOARD}/compile.status 2>/dev/null`" = "ok" -a \ + "$buildall" = "false" ]; then + printf "Skipping $VENDOR/$MAINBOARD; (already successful)\n" + return + fi + # default setting CC="${CROSS_COMPILE}gcc" -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

