summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mauderer <christian.mauderer@embedded-brains.de>2021-05-17 09:32:21 +0200
committerChristian Mauderer <christian.mauderer@embedded-brains.de>2021-05-28 08:27:08 +0200
commita3ebe17994beceef137acb0b240af185ed1b5768 (patch)
treee68ce19f99bb9b57b524ec72130ca65b868160c9
parentc-user: Document new rtems_task_delete() error (diff)
downloadrtems-docs-a3ebe17994beceef137acb0b240af185ed1b5768.tar.bz2
bsps/imxrt: Remove superfluous options from dtc
The -@ option adds symbols that are used when applying an overlay. RTEMS doesn't support overlays or re-parsing of device trees. So the symbols only increase the size of the binary. The same is true for the padding. It would be useful if the device tree is changed during run time which is not supported in RTEMS. Update #4180
-rw-r--r--user/bsps/arm/imxrt.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/bsps/arm/imxrt.rst b/user/bsps/arm/imxrt.rst
index 1bce6d7..c60b51d 100644
--- a/user/bsps/arm/imxrt.rst
+++ b/user/bsps/arm/imxrt.rst
@@ -118,7 +118,7 @@ with your FDT source names)::
sh> arm-rtems6-cpp -P -x assembler-with-cpp \
-I ${PREFIX}/arm-rtems6/imxrt1052/lib/include \
-include "YOUR.dts" /dev/null | \
- dtc -@ -O dtb -o "YOUR.dtb" -b 0 -p 1024
+ dtc -O dtb -o "YOUR.dtb" -b 0 -p 64
sh> rtems-bin2c -C -N imxrt_dtb "YOUR.dtb" "YOUR.c"
Make sure that your new c file is compiled and linked into the application.