]> git.sur5r.net Git - u-boot/blob - tools/binman/etype/intel_vbt.py
binman: Rename Entry property to 'section'
[u-boot] / 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     def __init__(self, section, etype, node):
12         Entry_blob.__init__(self, section, etype, node)