Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11102
-gerrit
commit 961df61bbdaec41d2ba1b5f02b7323f8318cebbc
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Fri Jul 31 17:27:23 2015 +0200
samsung/exynos5250: Enable bootblock console
Change-Id: I7b177b4c57f8e304167610205196ecfe4beb4fea
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
src/soc/samsung/exynos5250/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/soc/samsung/exynos5250/Kconfig b/src/soc/samsung/exynos5250/Kconfig
index 2008650..c8a8929 100644
--- a/src/soc/samsung/exynos5250/Kconfig
+++ b/src/soc/samsung/exynos5250/Kconfig
@@ -6,5 +6,6 @@ config CPU_SAMSUNG_EXYNOS5250
select HAVE_MONOTONIC_TIMER
select GENERIC_UDELAY
select HAVE_UART_SPECIAL
+ select BOOTBLOCK_CONSOLE
bool
default n
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11100
-gerrit
commit ced0bf593475d8cfed55788e295a88f515a0e61e
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Fri Jul 31 17:27:23 2015 +0200
imgtech/pistacho: Add vboot2 memory region
Change-Id: I375397d4a1db6fef6b40421590f315c0f7eb0948
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
src/soc/imgtec/pistachio/include/soc/memlayout.ld | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/soc/imgtec/pistachio/include/soc/memlayout.ld b/src/soc/imgtec/pistachio/include/soc/memlayout.ld
index b36d47e..366b20a 100644
--- a/src/soc/imgtec/pistachio/include/soc/memlayout.ld
+++ b/src/soc/imgtec/pistachio/include/soc/memlayout.ld
@@ -18,6 +18,7 @@
*/
#include <memlayout.h>
+#include <vendorcode/google/chromeos/memlayout.h>
#include <arch/header.ld>
@@ -39,7 +40,8 @@ SECTIONS
*/
SRAM_START(0x1a000000)
ROMSTAGE(0x1a005000, 40K)
- PRERAM_CBFS_CACHE(0x1a00f000, 68K)
+ VBOOT2_WORK(0x1a00f000, 12K)
+ PRERAM_CBFS_CACHE(0x1a012000, 56K)
SRAM_END(0x1a020000)
/* Bootblock executes out of KSEG0 and sets up the identity mapping.
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11095
-gerrit
commit 9386b0aa5f45c4581cb0a51356de63a6a203a367
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Fri Jul 31 16:39:06 2015 +0200
what-jenkins-does: Adapt to recent libpayload kconfig changes
Since we don't actually use this target at this time, it was bitrotting.
Fix it up, so we can start to use it.
Change-Id: I27d2ed4fb2640680acf739a87d61cb0d1463d705
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 14fa990..2a4eaf6 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -683,5 +683,5 @@ $(obj)/board_id:
JENKINS_PAYLOAD=none
what-jenkins-does:
util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c 4 -z -p $(JENKINS_PAYLOAD)
- (cd payloads/libpayload; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
+ (cd payloads/libpayload; unset COREBOOT_BUILD_DIR; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_LP_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
$(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11094
-gerrit
commit 0c6f2ba71f80c079edfe0c7da497f467ff1b1dc4
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Fri Jul 31 16:46:55 2015 +0200
abuild: avoid hanging in oldconfig for parallel builds
oldconfig may wait for some input. Since we don't care while building tools,
just provide something.
Change-Id: I1c6f1b46957301886a7645cfb6c6bd264437aa7e
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
util/abuild/abuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild
index f556972..9516da5 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -594,7 +594,7 @@ build_all_targets()
printf "$configoptions" > $TMPCFG
$MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils allnoconfig
printf "$configoptions" >> $TMPCFG
- $MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils oldconfig 2>/dev/null |head > /dev/null
+ yes "" 2>/dev/null | $MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils oldconfig 2>/dev/null |head > /dev/null
BUILDPREFIX=
if [ "$scanbuild" = "true" ]; then
scanbuild_out=$TARGET/sharedutils-scanbuild
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11093
-gerrit
commit 6283c21857a57daa81418e453a781c57cef0e393
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Fri Jul 31 16:30:04 2015 +0200
abuild: in junit output, name chromeos builds different from normal ones
This will allow building and reporting both in one pass.
Change-Id: Id7dbe63c7628cb97d9cf190c151bf23c7b264a89
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
util/abuild/abuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild
index e347988..f556972 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -241,7 +241,7 @@ function compile_target
etime=`perl -e 'print time();' 2>/dev/null || date +%s`
duration=$(( $etime - $stime ))
- junit " <testcase classname='board' name='$VENDOR/$MAINBOARD' time='$duration' >"
+ junit " <testcase classname='board${testclass/#/.}' name='$VENDOR/$MAINBOARD' time='$duration' >"
if [ $ret -eq 0 ]; then
junit "<system-out>"
@@ -479,6 +479,7 @@ chromeos=false
clean_work=false
customizing=""
configoptions=""
+testclass=
while true ; do
case "$1" in
-J|--junit) shift; mode=junit; rm -f $XMLFILE ;;
@@ -538,6 +539,7 @@ while true ; do
;;
-x|--chromeos) shift
chromeos=true
+ testclass=chromeos
customizing="${customizing}, chrome os"
configoptions="${configoptions}CONFIG_CHROMEOS=y\n"
;;