Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10029
-gerrit
commit 29191e021e5a8ccf09849f4e879c0dbf098d4697 Author: Patrick Georgi pgeorgi@chromium.org Date: Wed Apr 29 18:59:04 2015 +0200
chromeos: Add missing headers
Builds with CHROMEOS fail due to missing includes.
Change-Id: I8c88bca8f8cc3247d3f3311777f794c4fdfee3c1 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/soc/intel/broadwell/romstage/romstage.c | 1 + src/vendorcode/google/chromeos/vboot.c | 1 + 2 files changed, 2 insertions(+)
diff --git a/src/soc/intel/broadwell/romstage/romstage.c b/src/soc/intel/broadwell/romstage/romstage.c index 1741ae6..c026004 100644 --- a/src/soc/intel/broadwell/romstage/romstage.c +++ b/src/soc/intel/broadwell/romstage/romstage.c @@ -38,6 +38,7 @@ #include <soc/reset.h> #include <soc/romstage.h> #include <soc/spi.h> +#include <vendorcode/google/chromeos/chromeos.h>
/* Entry from cache-as-ram.inc. */ void * asmlinkage romstage_main(unsigned long bist, diff --git a/src/vendorcode/google/chromeos/vboot.c b/src/vendorcode/google/chromeos/vboot.c index a151f54..6f5534a 100644 --- a/src/vendorcode/google/chromeos/vboot.c +++ b/src/vendorcode/google/chromeos/vboot.c @@ -19,6 +19,7 @@
#include <types.h> #include <console/console.h> +#include <console/cbmem_console.h> #include <arch/acpi.h> #include <tpm.h> #include <reset.h>