xref: /openbmc/u-boot/tools/binman/etype/intel_vga.py (revision 0f347a00)
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 x86 VGA ROM binary blob
6#
7
8from entry import Entry
9from blob import Entry_blob
10
11class Entry_intel_vga(Entry_blob):
12    """Entry containing an Intel Video Graphics Adaptor (VGA) file
13
14    Properties / Entry arguments:
15        - filename: Filename of file to read into entry
16
17    This file contains code that sets up the integrated graphics subsystem on
18    some Intel SoCs. U-Boot executes this when the display is started up.
19
20    This is similar to the VBT file but in a different format.
21
22    See README.x86 for information about Intel binary blobs.
23    """
24    def __init__(self, section, etype, node):
25        Entry_blob.__init__(self, section, etype, node)
26