]> git.ipfire.org Git - people/ms/u-boot.git/blob - tools/binman/etype/u_boot_spl_nodtb.py
Merge git://git.denx.de/u-boot-spi
[people/ms/u-boot.git] / tools / binman / etype / u_boot_spl_nodtb.py
1 # Copyright (c) 2016 Google, Inc
2 # Written by Simon Glass <sjg@chromium.org>
3 #
4 # SPDX-License-Identifier: GPL-2.0+
5 #
6 # Entry-type module for 'u-boot-nodtb.bin'
7 #
8
9 from entry import Entry
10 from blob import Entry_blob
11
12 class Entry_u_boot_spl_nodtb(Entry_blob):
13 def __init__(self, image, etype, node):
14 Entry_blob.__init__(self, image, etype, node)
15
16 def GetDefaultFilename(self):
17 return 'spl/u-boot-spl-nodtb.bin'