the following patch was just integrated into master:
commit 762cdfaaa0535b622144ad7f8215937f5aac5451
Author: Yidi Lin <yidi.lin(a)mediatek.com>
Date: Fri Jul 31 17:10:44 2015 +0800
google/oak: Add timestamps in romstage
BUG=none
TEST=emerge-oak coreboot
BRANCH=none
Change-Id: Idf74265c9c1ab3a1a74fd18dfd289fccad25177e
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Original-Commit-Id: 569c433886b19cd08d168e995bf34156c2ba6963
Original-Change-Id: I07fda6a0719d49e2c07249276ae2cc0b57fdfeda
Original-Signed-off-by: Yidi Lin <yidi.lin(a)mediatek.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/292660
Original-Reviewed-by: Julius Werner <jwerner(a)chromium.org>
Reviewed-on: https://review.coreboot.org/12610
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See https://review.coreboot.org/12610 for details.
-gerrit
the following patch was just integrated into master:
commit 0dd8315bcc9bd31f30eb011a9845969a438eedd9
Author: Biao Huang <biao.huang(a)mediatek.com>
Date: Thu Sep 3 17:39:12 2015 +0800
mediatek/mt8173: Add APIs for PMIC GPIO control
BRANCH=chromeos-2015.07
BUG=none
TEST=verified on Oak rev3
Change-Id: Ied991f13b73e70b91cc267222f351b588df8df66
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Original-Commit-Id: 4bc08ce28611d8b940642483c09614d2b8205c1f
Original-Change-Id: If78e154ff7f553f65aa44d370820cc8c7f829c96
Original-Signed-off-by: Biao Huang <biao.huang(a)mediatek.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/297224
Original-Commit-Ready: Yidi Lin <yidi.lin(a)mediatek.com>
Original-Tested-by: Yidi Lin <yidi.lin(a)mediatek.com>
Original-Reviewed-by: Julius Werner <jwerner(a)chromium.org>
Reviewed-on: https://review.coreboot.org/12609
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See https://review.coreboot.org/12609 for details.
-gerrit
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12647
-gerrit
commit aca07efddec5d650e157994858a50029a3eb07f7
Author: Martin Roth <martinroth(a)google.com>
Date: Fri Dec 4 13:11:35 2015 -0700
Makefile.inc: Add AMDFWTOOL to tools so abuild will stop failing
Jenkins keeps failing trying to build AMDFWTOOL because it's being
built my multiple platforms at the same time. Putting it into the tools
list and having it built ahead of time should fix this problem.
Change-Id: I2a8308036135729f0ed19502f3e039aca009b3f3
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 4bccefb..adf52bc 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -549,7 +549,7 @@ crosstools-riscv: clean-for-update
crossgcc-clean: clean-for-update
$(MAKE) -C util/crossgcc clean
-tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE)
+tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE) $(AMDFWTOOL)
###########################################################################
# Common recipes for all stages
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12634
-gerrit
commit 0829ddda60b3d5bfb7bd1df21485e17f051a6b7d
Author: Martin Roth <martinroth(a)google.com>
Date: Thu Dec 3 12:38:27 2015 -0700
xcompile: Don't warn on missing power8 compiler
Until there's a reason to, don't print a warning about the missing
power8 compiler.
Change-Id: I47c60e0a16892f0fa228e1439e0424926bca00a4
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
util/xcompile/xcompile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 7f44df6..635bcd6 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -351,7 +351,7 @@ test_architecture() {
CLANG="clang -target ${clang_arch}-${TABI} -ccc-gcc-name ${GCC}"
fi
- if [ -z "$GCC" -a -z "$CLANG" ]; then
+ if [ -z "$GCC" -a -z "$CLANG" -a "power8" != "$architecture" ]; then
echo "Warning: no suitable compiler for $architecture." >&2
return 1
fi
the following patch was just integrated into master:
commit a91402fc1ee341fca6bec6df76960f68e8b0f8ce
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Fri Nov 27 12:36:28 2015 +0100
build system: actually provide revision information in defconfig
The config file added to CBFS is the short version created by defconfig.
The build system tried to add a header describing the version for quite
a while now, but failed because it wrote to the file, then had kconfig
overwrite it with the config data.
While at it, rely on build.h and its version information instead of
calling git manually.
Change-Id: I5e4d6c857594a55432c05bf1480973fc950f4d4a
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: https://review.coreboot.org/12558
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/12558 for details.
-gerrit
Alexander Couzens (lynxis(a)fe80.eu) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12645
-gerrit
commit ee6bbf8263c26897331f609bfa46663792bb6581
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Fri Dec 4 18:39:20 2015 +0100
SeaBIOS: remove VERSION variable in coreboot Makefile
SeaBIOS dropped support of VERSION variable and
is reproducible without it.
Change-Id: Iea1dc20e18aa5c274060e3cd55cd9e95086a602d
Signed-off-by: Alexander Couzens <lynxis(a)fe80.eu>
---
payloads/external/SeaBIOS/Makefile.inc | 3 ---
1 file changed, 3 deletions(-)
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 7f58254..48a6a6f 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -52,9 +52,6 @@ endif
build: config
echo " MAKE SeaBIOS $(TAG-y)"
- export VERSION=$$(cd seabios && \
- git describe --tags --long --dirty 2>/dev/null || \
- echo "unknown") ; \
$(MAKE) -C seabios OUT=out/
clean:
the following patch was just integrated into master:
commit 446c5dcd14cd551ad8ad35101ab2cdd2bdd78757
Author: Michael Tasche <michael.tasche(a)esd.eu>
Date: Thu Dec 3 17:07:01 2015 +0100
esd/atom15: import esd atom15 board
This patch adds esd atom15 board with
Intel Atom E3815 SoC.
Change-Id: I430a40ad8ab3316d34ec5567329370f69db3f15e
Signed-off-by: Michael Tasche <michael.tasche(a)esd.eu>
Reviewed-on: https://review.coreboot.org/12632
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/12632 for details.
-gerrit
the following patch was just integrated into master:
commit 4d166f93807f7079f27c659562462c94c27e345f
Author: Michael Tasche <michael.tasche(a)esd.eu>
Date: Wed Dec 2 17:34:47 2015 +0100
intel/minnowmax: Fix IRQ connection for legacy uart at 0x3f8
The E38xx legacy uart fires IRQ4, not IRQ3.
PCI based IRQ A is switched from IRQ4 to IRQ3,
to get a working IRQ for the legacy uart.
Change-Id: Ibc8e824c92bf1b9a92594ddc5d8a06726c9f1744
Signed-off-by: Michael Tasche <michael.tasche(a)esd.eu>
Reviewed-on: https://review.coreboot.org/12622
Reviewed-by: Martin Roth <martinroth(a)google.com>
Tested-by: build bot (Jenkins)
See https://review.coreboot.org/12622 for details.
-gerrit