]> git.sur5r.net Git - u-boot/blob - tools/binman/etype/x86_start16_spl.py
3679a43437ef60c8de4a80d22b6d7d421fb62136
[u-boot] / tools / binman / etype / x86_start16_spl.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 the 16-bit x86 start-up code for U-Boot SPL
7 #
8
9 from entry import Entry
10 from blob import Entry_blob
11
12 class Entry_x86_start16_spl(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-x86-16bit-spl.bin'