Merge git://git.denx.de/u-boot-uniphier
[platform/kernel/u-boot.git] / tools / binman / etype / intel_vbt.py
1 #
2 # Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6 # Entry-type module for Intel Video BIOS Table binary blob
7 #
8
9 from entry import Entry
10 from blob import Entry_blob
11
12 class Entry_intel_vbt(Entry_blob):
13     def __init__(self, image, etype, node):
14         Entry_blob.__init__(self, image, etype, node)