]> git.ipfire.org Git - thirdparty/u-boot.git/blame - tools/binman/etype/u_boot_img.py
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / tools / binman / etype / u_boot_img.py
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
c49deb83
SG
2# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
c49deb83
SG
5# Entry-type module for U-Boot binary
6#
7
8from entry import Entry
9from blob import Entry_blob
10
11class Entry_u_boot_img(Entry_blob):
12 def __init__(self, image, etype, node):
13 Entry_blob.__init__(self, image, etype, node)
14
15 def GetDefaultFilename(self):
16 return 'u-boot.img'