summaryrefslogtreecommitdiffstats
path: root/user
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-19 07:11:54 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-19 07:11:54 +0100
commit7ad2d12a571badf50fc94fc57253f3247492a475 (patch)
treed693713efb6909501262bca25eb48ea0ca78d18e /user
parentuser: Remove obsolete content in quick start (diff)
downloadrtems-docs-7ad2d12a571badf50fc94fc57253f3247492a475.tar.bz2
user: Clarify U-Boot commands
Diffstat (limited to 'user')
-rw-r--r--user/bsps/bsps-arm.rst16
1 files changed, 12 insertions, 4 deletions
diff --git a/user/bsps/bsps-arm.rst b/user/bsps/bsps-arm.rst
index 0f1dd2e..271a5a0 100644
--- a/user/bsps/bsps-arm.rst
+++ b/user/bsps/bsps-arm.rst
@@ -28,7 +28,7 @@ Boot via U-Boot
The application executable file (ELF file) must be converted to an U-Boot
image. Use the following commands:
-::
+.. code-block:: none
arm-rtems5-objcopy -O binary app.exe app.bin
gzip -9 -f -c app.bin > app.bin.gz
@@ -36,10 +36,14 @@ image. Use the following commands:
Use the following U-Boot commands to boot an application via TFTP download:
-::
+.. code-block:: none
tftpboot ${loadaddr} app.img && run loadfdt && bootm ${loadaddr} - ${fdt_addr} ; reset
+The ``loadfdt`` command may be not defined in your U-Boot environment. Just
+replace it with the appropriate commands to load the device tree at
+``${fdt_addr}``.
+
Clock Driver
------------
@@ -162,7 +166,7 @@ Boot via U-Boot
The application executable file (ELF file) must be converted to an U-Boot
image. Use the following commands:
-::
+.. code-block:: none
arm-rtems5-objcopy -O binary app.exe app.bin
gzip -9 -f -c app.bin > app.bin.gz
@@ -170,10 +174,14 @@ image. Use the following commands:
Use the following U-Boot commands to boot an application via TFTP download:
-::
+.. code-block:: none
tftpboot ${loadaddr} app.img && run loadfdt && bootm ${loadaddr} - ${fdt_addr} ; reset
+The ``loadfdt`` command may be not defined in your U-Boot environment. Just
+replace it with the appropriate commands to load the device tree at
+``${fdt_addr}``.
+
Clock Driver
------------