[coreboot-gerrit] New patch to review for coreboot: 7cff91c armv7: set CBFS header to zero

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Apr 16 15:23:15 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/9770

-gerrit

commit 7cff91c667c032f8dcb9da08490675f4bb4f5223
Author: Vadim Bendebury <vbendeb at chromium.org>
Date:   Thu Dec 25 15:26:44 2014 -0800

    armv7: set CBFS header to zero
    
    This is necessary to make sure that bootblock uses the default CBFS
    header (as it ought to) when multiple CBFS images support is enabled.
    
    BRANCH=storm
    BUG=chrome-os-partner:34161, chromium:445938
    TEST=with the rest of the patches applied storm boots all the way inot
         the Linux prompt
    
    Change-Id: I5e029d95c5cb085794c7bf5f44513b2144661e38
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 75b2c2ef6c8287db7c3e5879cacfd5dcba4391ac
    Original-Change-Id: I5c352921b4c9b6a3294f4658d174e0842d2ee365
    Original-Signed-off-by: Vadim Bendebury <vbendeb at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/237661
    Original-Reviewed-by: Aaron Durbin <adurbin at chromium.org>
---
 src/arch/arm/armv7/bootblock_simple.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/arch/arm/armv7/bootblock_simple.c b/src/arch/arm/armv7/bootblock_simple.c
index b8b60c8..ff15e24 100644
--- a/src/arch/arm/armv7/bootblock_simple.c
+++ b/src/arch/arm/armv7/bootblock_simple.c
@@ -46,6 +46,8 @@ void main(void)
 	exception_init();
 #endif
 
+	cbfs_set_header_offset(0);
+
 	bootblock_soc_init();
 	bootblock_mainboard_init();
 



More information about the coreboot-gerrit mailing list