the following patch was just integrated into master:
commit ca41a6ab0a2306665669ba2197ab400605031e96
Author: Nico Huber <nico.h(a)gmx.de>
Date: Sat Jan 23 21:29:47 2016 +0100
util: Look for python2 binary instead of python
Make the requirement of python2 explicit in scripts that are incompatible
with python3.
Change-Id: I77f150bdb3aab316fc3c3a21b911db397fa0106f
Signed-off-by: Nico Huber <nico.h(a)gmx.de>
Reviewed-on: https://review.coreboot.org/13286
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See https://review.coreboot.org/13286 for details.
-gerrit
Alexandru Gagniuc (mr.nuke.me(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12874
-gerrit
commit 31c1deb55c340bc2cb471fd8e07f45e131588000
Author: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
Date: Fri Jan 8 21:56:43 2016 -0800
OBSOLETED BY https://review.coreboot.org/12869
drivers/uart/Makefile.inc: Compile uart8250io in bootblock
This is needed for the next patch, which enables bootblock console on
"qemu" CPUs, since that platform uses the 8250io driver.
Note that the include is guarded by CONFIG_DRIVERS_UART_8250IO, so
there is no risk of breaking builds on non-x86 architectures.
Change-Id: Iaeed7280aa97b58d46b003df66647dae4a4e0e29
Signed-off-by: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
---
src/drivers/uart/Makefile.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/drivers/uart/Makefile.inc b/src/drivers/uart/Makefile.inc
index da8b5f7..4b2aa53 100644
--- a/src/drivers/uart/Makefile.inc
+++ b/src/drivers/uart/Makefile.inc
@@ -10,6 +10,7 @@ smm-$(CONFIG_DEBUG_SMI) += util.c
# be located in the soc/ or cpu/ directories instead of here.
ifeq ($(CONFIG_DRIVERS_UART_8250IO),y)
+bootblock-y += uart8250io.c
verstage-y += uart8250io.c
romstage-y += uart8250io.c
ramstage-y += uart8250io.c
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13435
-gerrit
commit 4d18ad89b514f6dd650249c2347538c74199dcd0
Author: Martin Roth <martinroth(a)google.com>
Date: Mon Jan 25 15:59:24 2016 -0700
Makefile: Add a comment to fix syntax highlighting
Trivial fix for syntax highlighting in editors. Some get confused by
the double quote that doesn't have a close quote and stop highlighting
at that point. This comment closes the quote and the paren pair so
that they can recover.
Change-Id: I566e8e0f4412009f679ab079f20ae30c2049b502
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile
index c46c4d8..bfab588 100644
--- a/Makefile
+++ b/Makefile
@@ -153,6 +153,7 @@ endif
include toolchain.inc
strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
+# fix makefile syntax highlighting after strip macro "))
# The primary target needs to be here before we include the
# other files