]> git.sur5r.net Git - u-boot/blob - tools/binman/etype/intel_me.py
binman: Remove hard-coded file name for x86 flash-descriptor & intel-me
[u-boot] / tools / binman / etype / intel_me.py
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 Management Engine binary blob
7 #
8
9 from entry import Entry
10 from blob import Entry_blob
11
12 class Entry_intel_me(Entry_blob):
13     def __init__(self, image, etype, node):
14         Entry_blob.__init__(self, image, etype, node)