aboutsummaryrefslogtreecommitdiff
path: root/targets/corstone-300/platform.ld
diff options
context:
space:
mode:
authorJonny Svärd <jonny.svaerd@arm.com>2021-03-01 14:35:49 +0100
committerJonny Svärd <jonny.svaerd@arm.com>2021-03-02 13:17:35 +0100
commitf521be94ac5017dc6be02e6344aef2bd68dc8343 (patch)
tree4fa5eddb350462821848a4c561c9e03613fb7f4e /targets/corstone-300/platform.ld
parent715c07b06aa3462ceeef38b777e8526d3bffe472 (diff)
downloadethos-u-core-platform-f521be94ac5017dc6be02e6344aef2bd68dc8343.tar.gz
Rename .bss.NoInit section to .bss.tensor_arena
Change-Id: I660cd5d2bc73eaf589598c4f0570f5e9293de28d
Diffstat (limited to 'targets/corstone-300/platform.ld')
-rw-r--r--targets/corstone-300/platform.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld
index 9365756..a1cdb0e 100644
--- a/targets/corstone-300/platform.ld
+++ b/targets/corstone-300/platform.ld
@@ -253,7 +253,7 @@ SECTIONS
.sram :
{
. = ALIGN(16);
- *(.bss.NoInit)
+ *(.bss.tensor_arena)
. = ALIGN(16);
} > SRAM AT > SRAM
#else
@@ -264,10 +264,10 @@ SECTIONS
. = ALIGN(16);
} > SRAM AT > SRAM
- .bss.NoInit :
+ .bss.tensor_arena :
{
. = ALIGN(16);
- *(.bss.NoInit)
+ *(.bss.tensor_arena)
. = ALIGN(16);
} > DDR AT > DDR
#endif