summaryrefslogtreecommitdiffstats
path: root/bsps
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-12-21 15:16:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2024-01-15 10:33:50 +0100
commit663bedd59ed44f76b1346e7585a3bccfb590889a (patch)
tree519f8b2e6a33c9c85fec492a25586c396fff235c /bsps
parentbsp/tms570: Use shared bsp_start_hook_1() (diff)
downloadrtems-663bedd59ed44f76b1346e7585a3bccfb590889a.tar.bz2
bsp/tms570: Use bsp_start_copy_sections_compact()
There is no need to relocate the text and read-only data. Update #4982.
Diffstat (limited to 'bsps')
-rw-r--r--bsps/arm/tms570/start/bspstarthooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/arm/tms570/start/bspstarthooks.c b/bsps/arm/tms570/start/bspstarthooks.c
index 71ebf9f32d..81ad42f449 100644
--- a/bsps/arm/tms570/start/bspstarthooks.c
+++ b/bsps/arm/tms570/start/bspstarthooks.c
@@ -43,6 +43,6 @@
BSP_START_TEXT_SECTION void bsp_start_hook_1( void )
{
- bsp_start_copy_sections();
+ bsp_start_copy_sections_compact();
bsp_start_clear_bss();
}