summaryrefslogtreecommitdiff
path: root/bl2
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2020-04-07 13:04:24 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2020-04-24 19:19:06 +0900
commita926a9f60aa94a034b0a06eed296996363245d30 (patch)
treed61c866d0a58353746c0515f0139cdc811b99361 /bl2
parentb9f7b57d3a14e629af43bebc531763a923032239 (diff)
linker_script: move stacks section to bl_common.ld.h
The stacks section is the same for all BL linker scripts. Move it to the common header file. Change-Id: Ibd253488667ab4f69702d56ff9e9929376704f6c Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'bl2')
-rw-r--r--bl2/bl2.ld.S7
-rw-r--r--bl2/bl2_el3.ld.S7
2 files changed, 2 insertions, 12 deletions
diff --git a/bl2/bl2.ld.S b/bl2/bl2.ld.S
index 15df5dd03..17475f061 100644
--- a/bl2/bl2.ld.S
+++ b/bl2/bl2.ld.S
@@ -88,12 +88,7 @@ SECTIONS
__DATA_END__ = .;
} >RAM
- stacks (NOLOAD) : {
- __STACKS_START__ = .;
- *(tzfw_normal_stacks)
- __STACKS_END__ = .;
- } >RAM
-
+ STACK_SECTION >RAM
BSS_SECTION >RAM
XLAT_TABLE_SECTION >RAM
diff --git a/bl2/bl2_el3.ld.S b/bl2/bl2_el3.ld.S
index d04f226e9..ea7a23500 100644
--- a/bl2/bl2_el3.ld.S
+++ b/bl2/bl2_el3.ld.S
@@ -123,12 +123,7 @@ SECTIONS
} >RAM
__RELA_END__ = .;
- stacks (NOLOAD) : {
- __STACKS_START__ = .;
- *(tzfw_normal_stacks)
- __STACKS_END__ = .;
- } >RAM
-
+ STACK_SECTION >RAM
BSS_SECTION >RAM
XLAT_TABLE_SECTION >RAM