]> git.sur5r.net Git - u-boot/blob - tools/binman/etype/u_boot.py
binman: Rename Entry property to 'section'
[u-boot] / tools / binman / etype / u_boot.py
1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright (c) 2016 Google, Inc
3 # Written by Simon Glass <sjg@chromium.org>
4 #
5 # Entry-type module for U-Boot binary
6 #
7
8 from entry import Entry
9 from blob import Entry_blob
10
11 class Entry_u_boot(Entry_blob):
12     def __init__(self, section, etype, node):
13         Entry_blob.__init__(self, section, etype, node)
14
15     def GetDefaultFilename(self):
16         return 'u-boot.bin'