From da229090733cf9161e9e26a70f6f9ff9238a41cf Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Fri, 25 Nov 2016 20:15:56 -0700 Subject: binman: Add support for building x86 images with FSP/CMC Add support for two more from the inexhaustible supply of x86 binary blob types. Signed-off-by: Simon Glass Tested-by: Bin Meng --- tools/binman/etype/intel_cmc.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tools/binman/etype/intel_cmc.py (limited to 'tools/binman/etype/intel_cmc.py') diff --git a/tools/binman/etype/intel_cmc.py b/tools/binman/etype/intel_cmc.py new file mode 100644 index 0000000..9bce8ae --- /dev/null +++ b/tools/binman/etype/intel_cmc.py @@ -0,0 +1,17 @@ +# Copyright (c) 2016 Google, Inc +# Written by Simon Glass +# +# SPDX-License-Identifier: GPL-2.0+ +# +# Entry-type module for Intel Chip Microcode binary blob +# + +from entry import Entry +from blob import Entry_blob + +class Entry_intel_cmc(Entry_blob): + def __init__(self, image, etype, node): + Entry_blob.__init__(self, image, etype, node) + + def GetDefaultFilename(self): + return 'cmc.bin' -- cgit v1.1