summaryrefslogtreecommitdiff
path: root/tools/binman/etype/u_boot_spl_dtb.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-07-17 13:25:35 -0600
committerSimon Glass <sjg@chromium.org>2018-08-01 16:30:48 -0600
commit3fb397bba01a511f8ca2b091a359495e18badd7e (patch)
treec0da18b617b1d3f489d57df17dd1ee7ba30ebfb9 /tools/binman/etype/u_boot_spl_dtb.py
parent9b1a804d52832aa2ae62bef0254451606d5a1901 (diff)
binman: Expand documentation for entries
At present only the more complex entries are documented. It is useful to have documentation for all entries in one place. As a first step, add and expand the documentation to cover all entries. Signed-off-by: Simon Glass <sjg@chromium.org>
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)