summaryrefslogtreecommitdiff
path: root/doc/usage
diff options
context:
space:
mode:
authorRasmus Villemoes <[email protected]>2023-09-25 10:09:09 +0200
committerTom Rini <[email protected]>2023-10-11 13:22:32 -0400
commit4fb7e570d6bc3658e581937940de8cde52bd4103 (patch)
tree5a9b716c2e17cb19ce10ace1c0f9818bac611a18 /doc/usage
parent01bf2e2eb3ef9b8ad0f8a132f09955b6911a6908 (diff)
doc: use .dtso as extension for device tree overlay sources
Moving towards using .dtso for overlay sources, update the documentation examples to follow that pattern. Signed-off-by: Rasmus Villemoes <[email protected]> Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'doc/usage')
-rw-r--r--doc/usage/fdt_overlays.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/usage/fdt_overlays.rst b/doc/usage/fdt_overlays.rst
index 7f113edae37..81d0d37f3f1 100644
--- a/doc/usage/fdt_overlays.rst
+++ b/doc/usage/fdt_overlays.rst
@@ -43,7 +43,7 @@ traditional binary device-tree. For example:
$ dtc -@ -I dts -O dtb -o base.dtb base.dts
-**overlay.dts**
+**overlay.dtso**
::
@@ -63,7 +63,7 @@ traditional binary device-tree. For example:
.. code-block:: console
- $ dtc -@ -I dts -O dtb -o overlay.dtbo overlay.dts
+ $ dtc -@ -I dts -O dtb -o overlay.dtbo overlay.dtso
Ways to Utilize Overlays in U-Boot
----------------------------------