xref: /openbmc/u-boot/tools/binman/etype/intel_cmc.py (revision fcf2fba4)
1# Copyright (c) 2016 Google, Inc
2# Written by Simon Glass <sjg@chromium.org>
3#
4# SPDX-License-Identifier:      GPL-2.0+
5#
6# Entry-type module for Intel Chip Microcode binary blob
7#
8
9from entry import Entry
10from blob import Entry_blob
11
12class Entry_intel_cmc(Entry_blob):
13    def __init__(self, image, etype, node):
14        Entry_blob.__init__(self, image, etype, node)
15