xref: /openbmc/u-boot/tools/binman/etype/intel_vbt.py (revision 23e8bd7e)
1# SPDX-License-Identifier: GPL-2.0+
2# Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
3#
4# Entry-type module for Intel Video BIOS Table binary blob
5#
6
7from entry import Entry
8from blob import Entry_blob
9
10class Entry_intel_vbt(Entry_blob):
11    """Entry containing an Intel Video BIOS Table (VBT) file
12
13    Properties / Entry arguments:
14        - filename: Filename of file to read into entry
15
16    This file contains code that sets up the integrated graphics subsystem on
17    some Intel SoCs. U-Boot executes this when the display is started up.
18
19    See README.x86 for information about Intel binary blobs.
20    """
21    def __init__(self, section, etype, node):
22        Entry_blob.__init__(self, section, etype, node)
23