* [PATCH] Documentation: Various tweaks to user manual, device tree chapter.
@ 2014-07-03 12:00 Robert P. J. Day
2014-07-04 5:32 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2014-07-03 12:00 UTC (permalink / raw)
To: U-Boot Version 2 (barebox)
Grammar, typoes, font, link fixes.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
diff --git a/Documentation/user/devicetree.rst b/Documentation/user/devicetree.rst
index 856ff6a..17934d8 100644
--- a/Documentation/user/devicetree.rst
+++ b/Documentation/user/devicetree.rst
@@ -4,29 +4,29 @@ Devicetree support
==================
Flattened Device Tree (FDT) is a data structure for describing the hardware on
-a system. On an increasing number of boards both barebox and the Linux Kernel can
+a system. On an increasing number of boards, both barebox and the Linux kernel can
probe their devices directly from devicetrees. barebox needs the devicetree compiled
-into the binary. The Kernel usually does not have a devicetree compiled in, instead
-the Kernel expects to be passed a devicetree from the bootloader.
+into the binary. The kernel usually does not have a devicetree compiled in; instead,
+the kernel expects to be passed a devicetree from the bootloader.
From a bootloader's point of view, using devicetrees has the advantage that the
-same devicetree is used to probe both the Kernel and the Bootloader; this
+same devicetree can be used by both the bootloader and the kernel; this
drastically reduces porting effort since the devicetree has to be written only
-once (and with luck somebody has already written a devicetree for the Kernel).
-Probing barebox from devicetree is highly recommended for new projects.
+once (and with luck somebody has already written a devicetree for the kernel).
+Having barebox consult a devicetree is highly recommended for new projects.
.. _internal_devicetree:
The internal devicetree
-----------------------
-The devicetree barebox has been probed from plays a special role. It is referred to
-as the :ref:`internal_devicetree`. The barebox devicetree commands work on this
-devicetree. The devicetree source (DTS) files are kept in sync with the Kernel DTS
+The devicetree consulted by barebox plays a special role. It is referred to
+as the "internal devicetree." The barebox devicetree commands work on this
+devicetree. The devicetree source (DTS) files are kept in sync with the kernel DTS
files. As the FDT files are meant to be backward compatible, it should always be possible
-to start a Kernel with the barebox internal devicetree. However, since the barebox
+to start a kernel with the barebox internal devicetree. However, since the barebox
devicetree may not be complete or contain bugs it is always possible to start the
-Kernel with another devicetree than barebox has been started with.
+kernel with a devicetree different from the one used by barebox.
If a device has been probed from the devicetree then using the :ref:`command_devinfo`
command on it will show the corresponding devicetree node:
@@ -73,10 +73,11 @@ work on the internal devicetree. It is possible to add/remove nodes using the
It is important to know that these commands always work on the internal
devicetree. If you modify the internal devicetree to influence the behaviour of
-a Kernel booted later, make sure that you start the kernel with the internal
+a kernel booted later, make sure that you start the kernel with the internal
devicetree (i.e. don't pass a devicetree to the :ref:`command_bootm` command). If you
-wish to use another devicetree than the internal devicetree for starting the Kernel,
-you can exchange the internal devicetree during runtime:
+wish to use another devicetree than the internal devicetree for starting the kernel,
+you can exchange the internal devicetree during runtime using the
+:ref:`command_oftree` command:
.. code-block:: sh
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Documentation: Various tweaks to user manual, device tree chapter.
2014-07-03 12:00 [PATCH] Documentation: Various tweaks to user manual, device tree chapter Robert P. J. Day
@ 2014-07-04 5:32 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2014-07-04 5:32 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: U-Boot Version 2 (barebox)
On Thu, Jul 03, 2014 at 08:00:07AM -0400, Robert P. J. Day wrote:
>
> Grammar, typoes, font, link fixes.
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Applied, thanks
Sascha
>
> ---
>
> diff --git a/Documentation/user/devicetree.rst b/Documentation/user/devicetree.rst
> index 856ff6a..17934d8 100644
> --- a/Documentation/user/devicetree.rst
> +++ b/Documentation/user/devicetree.rst
> @@ -4,29 +4,29 @@ Devicetree support
> ==================
>
> Flattened Device Tree (FDT) is a data structure for describing the hardware on
> -a system. On an increasing number of boards both barebox and the Linux Kernel can
> +a system. On an increasing number of boards, both barebox and the Linux kernel can
> probe their devices directly from devicetrees. barebox needs the devicetree compiled
> -into the binary. The Kernel usually does not have a devicetree compiled in, instead
> -the Kernel expects to be passed a devicetree from the bootloader.
> +into the binary. The kernel usually does not have a devicetree compiled in; instead,
> +the kernel expects to be passed a devicetree from the bootloader.
>
> From a bootloader's point of view, using devicetrees has the advantage that the
> -same devicetree is used to probe both the Kernel and the Bootloader; this
> +same devicetree can be used by both the bootloader and the kernel; this
> drastically reduces porting effort since the devicetree has to be written only
> -once (and with luck somebody has already written a devicetree for the Kernel).
> -Probing barebox from devicetree is highly recommended for new projects.
> +once (and with luck somebody has already written a devicetree for the kernel).
> +Having barebox consult a devicetree is highly recommended for new projects.
>
> .. _internal_devicetree:
>
> The internal devicetree
> -----------------------
>
> -The devicetree barebox has been probed from plays a special role. It is referred to
> -as the :ref:`internal_devicetree`. The barebox devicetree commands work on this
> -devicetree. The devicetree source (DTS) files are kept in sync with the Kernel DTS
> +The devicetree consulted by barebox plays a special role. It is referred to
> +as the "internal devicetree." The barebox devicetree commands work on this
> +devicetree. The devicetree source (DTS) files are kept in sync with the kernel DTS
> files. As the FDT files are meant to be backward compatible, it should always be possible
> -to start a Kernel with the barebox internal devicetree. However, since the barebox
> +to start a kernel with the barebox internal devicetree. However, since the barebox
> devicetree may not be complete or contain bugs it is always possible to start the
> -Kernel with another devicetree than barebox has been started with.
> +kernel with a devicetree different from the one used by barebox.
> If a device has been probed from the devicetree then using the :ref:`command_devinfo`
> command on it will show the corresponding devicetree node:
>
> @@ -73,10 +73,11 @@ work on the internal devicetree. It is possible to add/remove nodes using the
>
> It is important to know that these commands always work on the internal
> devicetree. If you modify the internal devicetree to influence the behaviour of
> -a Kernel booted later, make sure that you start the kernel with the internal
> +a kernel booted later, make sure that you start the kernel with the internal
> devicetree (i.e. don't pass a devicetree to the :ref:`command_bootm` command). If you
> -wish to use another devicetree than the internal devicetree for starting the Kernel,
> -you can exchange the internal devicetree during runtime:
> +wish to use another devicetree than the internal devicetree for starting the kernel,
> +you can exchange the internal devicetree during runtime using the
> +:ref:`command_oftree` command:
>
> .. code-block:: sh
>
>
> --
>
> ========================================================================
> Robert P. J. Day Ottawa, Ontario, CANADA
> http://crashcourse.ca
>
> Twitter: http://twitter.com/rpjday
> LinkedIn: http://ca.linkedin.com/in/rpjday
> ========================================================================
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-07-04 5:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-03 12:00 [PATCH] Documentation: Various tweaks to user manual, device tree chapter Robert P. J. Day
2014-07-04 5:32 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox