summaryrefslogtreecommitdiff
path: root/tools/binman/etype/u_boot_spl_dtb.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/etype/u_boot_spl_dtb.py')
-rw-r--r--tools/binman/etype/u_boot_spl_dtb.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/binman/etype/u_boot_spl_dtb.py b/tools/binman/etype/u_boot_spl_dtb.py
index eefa1ff53a..6a30edc83c 100644
--- a/tools/binman/etype/u_boot_spl_dtb.py
+++ b/tools/binman/etype/u_boot_spl_dtb.py
@@ -9,6 +9,15 @@ from entry import Entry
from blob import Entry_blob
class Entry_u_boot_spl_dtb(Entry_blob):
+ """U-Boot SPL device tree
+
+ Properties / Entry arguments:
+ - filename: Filename of u-boot.dtb (default 'spl/u-boot-spl.dtb')
+
+ This is the SPL device tree, containing configuration information for
+ SPL. SPL needs this to know what devices are present and which drivers
+ to activate.
+ """
def __init__(self, section, etype, node):
Entry_blob.__init__(self, section, etype, node)