[coreboot-gerrit] New patch to review for coreboot: ff0f072 vboot: add cbfs_core

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Tue May 5 15:15:33 CEST 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10103

-gerrit

commit ff0f072ef538aa989306d2f4f36590706668a012
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Fri May 1 16:48:54 2015 -0500

    vboot: add cbfs_core
    
    And we don't support lzma compressed data in verstage.
    
    Change-Id: I3d8d3290f147871c49e9440e9b54bbf2742aaa9e
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
---
 src/lib/Makefile.inc | 1 +
 src/lib/cbfs_core.h  | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index 82dd5c5..ef4e2aa 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -33,6 +33,7 @@ bootblock-y += memcmp.c
 verstage-y += prog_ops.c
 verstage-y += delay.c
 verstage-y += cbfs.c
+verstage-y += cbfs_core.c
 verstage-y += memcmp.c
 verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
 verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
diff --git a/src/lib/cbfs_core.h b/src/lib/cbfs_core.h
index c301c33..f9aeaa8 100644
--- a/src/lib/cbfs_core.h
+++ b/src/lib/cbfs_core.h
@@ -15,6 +15,8 @@
 # define CBFS_MINI_BUILD
 #elif defined(__BOOTBLOCK__)
   /* No LZMA in boot block. */
+#elif defined(__VERSTAGE__)
+  /* No LZMA in verstage. */
 #elif defined(__PRE_RAM__) && !CONFIG_COMPRESS_RAMSTAGE
   /* No LZMA in romstage if ramstage is not compressed. */
 #else



More information about the coreboot-gerrit mailing list