binman: Drop repetitive heading for each entry
[platform/kernel/u-boot.git] / tools / binman / etype / intel_vbt.py
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
7 from binman.etype.blob_ext import Entry_blob_ext
8
9 class Entry_intel_vbt(Entry_blob_ext):
10     """Intel Video BIOS Table (VBT) file
11
12     Properties / Entry arguments:
13         - filename: Filename of file to read into entry
14
15     This file contains code that sets up the integrated graphics subsystem on
16     some Intel SoCs. U-Boot executes this when the display is started up.
17
18     See README.x86 for information about Intel binary blobs.
19     """
20     def __init__(self, section, etype, node):
21         super().__init__(section, etype, node)