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 binman.etype.blob_ext import Entry_blob_ext
9
10class Entry_intel_vga(Entry_blob_ext):
11    """Intel Video Graphics Adaptor (VGA) 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    This is similar to the VBT file but in a different format.
20
21    See README.x86 for information about Intel binary blobs.
22    """
23    def __init__(self, section, etype, node):
24        super().__init__(section, etype, node)
25