xref: /openbmc/u-boot/tools/binman/etype/intel_fsp.py (revision 78a88f79)
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 Firmware Support Package binary blob
6#
7
8from entry import Entry
9from blob import Entry_blob
10
11class Entry_intel_fsp(Entry_blob):
12    def __init__(self, section, etype, node):
13        Entry_blob.__init__(self, section, etype, node)
14