aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/etype/intel_vbt.py
blob: 4d465ad01732547ebcf6f9b87107d9fa399aaa6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: GPL-2.0+
# Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
#
# Entry-type module for Intel Video BIOS Table binary blob
#

from binman.entry import Entry
from binman.etype.blob import Entry_blob

class Entry_intel_vbt(Entry_blob):
    """Entry containing an Intel Video BIOS Table (VBT) file

    Properties / Entry arguments:
        - filename: Filename of file to read into entry

    This file contains code that sets up the integrated graphics subsystem on
    some Intel SoCs. U-Boot executes this when the display is started up.

    See README.x86 for information about Intel binary blobs.
    """
    def __init__(self, section, etype, node):
        Entry_blob.__init__(self, section, etype, node)