[coreboot-gerrit] New patch to review for coreboot: cbfstool: Add EFI and MMA file types

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Nov 19 17:12:44 CET 2015


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

-gerrit

commit 4e55c421770750cdc5863c02685e82ac9356f6bb
Author: Pratik Prajapati <pratikkumar.v.prajapati at intel.com>
Date:   Wed Sep 2 13:46:30 2015 -0700

    cbfstool: Add EFI and MMA file types
    
    Add efi and mma file types.
    
    BRANCH=none
    BUG=chrome-os-partner:43731
    TEST=Build and Boot kunimitsu (FAB3). cbfstool shows mma and efi file types.
    Not tested on Glados
    
    CQ-DEPEND=CL:299476,CL:299474,CL:299473,CL:299509,CL:299508,CL:299507,CL:*230478,CL:*230479
    
    Change-Id: I4f24a8426028428d613eb875c11cca70d9461dd6
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 3c625ad2aeca3a9358fba1eb7434c66ff991131a
    Original-Change-Id: I611819d213d87fbbb20816fdfb9e4b1401b3b89b
    Original-Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati at intel.com>
    Original-Reviewed-on: https://chromium-review.googlesource.com/299475
    Original-Commit-Ready: Pratikkumar V Prajapati <pratikkumar.v.prajapati at intel.com>
    Original-Tested-by: Pratikkumar V Prajapati <pratikkumar.v.prajapati at intel.com>
    Original-Reviewed-by: Aaron Durbin <adurbin at chromium.org>
    Original-Reviewed-by: Pratikkumar V Prajapati <pratikkumar.v.prajapati at intel.com>
---
 util/cbfstool/cbfs.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/util/cbfstool/cbfs.h b/util/cbfstool/cbfs.h
index 486e2db..4a2a1ed 100644
--- a/util/cbfstool/cbfs.h
+++ b/util/cbfstool/cbfs.h
@@ -168,6 +168,8 @@ struct cbfs_payload {
 #define CBFS_COMPONENT_MICROCODE  0x53
 #define CBFS_COMPONENT_FSP        0x60
 #define CBFS_COMPONENT_MRC        0x61
+#define CBFS_COMPONENT_MMA	  0x62
+#define CBFS_COMPONENT_EFI	  0x63
 #define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
 #define CBFS_COMPONENT_SPD          0xab
 #define CBFS_COMPONENT_MRC_CACHE    0xac
@@ -207,6 +209,8 @@ static struct typedesc_t filetypes[] unused = {
 	{CBFS_COMPONENT_CMOS_LAYOUT, "cmos_layout"},
 	{CBFS_COMPONENT_SPD, "spd"},
 	{CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
+	{CBFS_COMPONENT_MMA, "mma"},
+	{CBFS_COMPONENT_EFI, "efi"},
 	{CBFS_COMPONENT_DELETED, "deleted"},
 	{CBFS_COMPONENT_NULL, "null"}
 };



More information about the coreboot-gerrit mailing list