Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16381
-gerrit
commit 6dc2cd25cf572abadd49b9921a6448089861c28b
Author: Martin Roth <martinroth(a)google.com>
Date: Wed Aug 31 09:59:15 2016 -0600
abuild: Print summary at the end of abuild run
Previously, there was no final statement of whether the boards
all built correctly or not. This made it easy to miss failures
when looking through all of data that abuild generates.
Change-Id: I2fcfe72412fd4bf4bd9f1ecc2d4b61d049d28604
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
util/abuild/abuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild
index a2a428b..7fd88f7 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -16,8 +16,8 @@
#set -x # Turn echo on....
-ABUILD_DATE="Oct 13, 2015"
-ABUILD_VERSION="0.9.4"
+ABUILD_DATE="August 31, 2016"
+ABUILD_VERSION="0.9.5"
TOP=$PWD
@@ -678,4 +678,10 @@ else
fi
junit '</testsuite>'
+if [ $failed -eq 0 ]; then
+ printf "\nAll builds completed successfully.\n";
+else
+ printf "\nERROR: One or more builds failed.\n";
+fi
+
exit $failed
the following patch was just integrated into master:
commit 4dfe13081922454e97e6b0f8d6532cd97c635b60
Author: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Date: Wed Aug 24 16:05:32 2016 +0530
driver/intel/fsp2.0: Add External stage cache region helper
If ramstage caching outside CBMEM is enabled
i.e CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM, then a
helper function to determine the caching region in SMM
should be implemented. Add the same to FSP2.0 driver.
FSP1.1 driver had the same implementation hence copied stage_cache.c.
The SoC code should implement the smm_subregion to provide
the base and size of the caching region within SMM. The fsp/memmap.h
provides the prototype and we will reuse the same from FPS 1.1.
Change-Id: I4412a710391dc0cee044b96403c50260c3534e6f
Signed-off-by: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Reviewed-on: https://review.coreboot.org/16312
Reviewed-by: Aaron Durbin <adurbin(a)chromium.org>
Tested-by: build bot (Jenkins)
See https://review.coreboot.org/16312 for details.
-gerrit
the following patch was just integrated into master:
commit 3156934bf8f059fb8ba14965b75ed0ccb56c79cb
Author: John Zhao <john.zhao(a)intel.com>
Date: Tue Aug 23 16:38:05 2016 -0700
soc/intel/apollolake: Gather microcode revision
Expose get_microcode_info in cpu initialization. Microcode
revision is retrieved and stored into log file at verstage.
BUG=chrome-os-partner:56544
BRANCH=None
TEST=Built coreboot image and validate log file
Change-Id: I1e792e70f1318df64b4b85a319700013f3757952
Signed-off-by: John Zhao <john.zhao(a)intel.com>
Reviewed-on: https://review.coreboot.org/16311
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)chromium.org>
See https://review.coreboot.org/16311 for details.
-gerrit