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