binman: Expand documentation for entries
[oweals/u-boot.git] / tools / binman / etype / u_boot_dtb.py
index dd3c5b2790139f2934dae160b097cc7ed77065cc..fb3dd1cf6425217a4af5928b5df60c730fcd44c2 100644 (file)
@@ -9,6 +9,15 @@ from entry import Entry
 from blob import Entry_blob
 
 class Entry_u_boot_dtb(Entry_blob):
+    """U-Boot device tree
+
+    Properties / Entry arguments:
+        - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
+
+    This is the U-Boot device tree, containing configuration information for
+    U-Boot. U-Boot 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)