rockchip: rk3399: Add Nanopi M4 2GB board support
[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 entry import Entry
8 from blob import Entry_blob
9
10 class 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)