1 # SPDX-License-Identifier: GPL-2.0+
5 # Entry-type module for RISC-V OpenSBI binary blob
8 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg
10 class Entry_opensbi(Entry_blob_named_by_arg):
11 """RISC-V OpenSBI fw_dynamic blob
13 Properties / Entry arguments:
14 - opensbi-path: Filename of file to read into entry. This is typically
17 This entry holds the run-time firmware, typically started by U-Boot SPL.
18 See the U-Boot README for your architecture or board for how to use it. See
19 https://github.com/riscv/opensbi for more information about OpenSBI.
21 def __init__(self, section, etype, node):
22 super().__init__(section, etype, node, 'opensbi')