Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/935
-gerrit
commit 33a8fabdf07f07531b8ef2e3d88e95836acacaae Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Fri Apr 27 00:48:58 2012 +0200
ChromeOS: add missing string.h in gnvs.c
string.h is required to build with the reference toolchain.
Change-Id: I9fd8d2ea8fc676d3502989cbcc7aefe3b2d738b6 Signed-off-by: Stefan Reinauer reinauer@google.com --- src/vendorcode/google/chromeos/gnvs.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/vendorcode/google/chromeos/gnvs.c b/src/vendorcode/google/chromeos/gnvs.c index 8d0f9bb..6b545f4 100644 --- a/src/vendorcode/google/chromeos/gnvs.c +++ b/src/vendorcode/google/chromeos/gnvs.c @@ -18,6 +18,7 @@ */
#include <types.h> +#include <string.h> #include <cbfs.h> #include <console/console.h> #include "gnvs.h"