Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
568a8817
Commit
568a8817
authored
Jun 30, 2020
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
Jun 30, 2020
Browse files
Merge "linker_script: move .rela.dyn section to bl_common.ld.h" into integration
parents
1ba168cf
e8ad6168
Changes
4
Hide whitespace changes
Inline
Side-by-side
bl2/bl2_el3.ld.S
View file @
568a8817
...
...
@@ -105,17 +105,7 @@ SECTIONS
__DATA_RAM_START__
=
__DATA_START__
;
__DATA_RAM_END__
=
__DATA_END__
;
/
*
*
.
rela
.
dyn
needs
to
come
after
.
data
for
the
read
-
elf
utility
to
parse
*
this
section
correctly
.
Ensure
8
-
byte
alignment
so
that
the
fields
of
*
RELA
data
structure
are
aligned
.
*/
.
=
ALIGN
(
8
)
;
__RELA_START__
=
.
;
.
rela.dyn
.
:
{
}
>
RAM
__RELA_END__
=
.
;
RELA_SECTION
>
RAM
STACK_SECTION
>
RAM
BSS_SECTION
>
RAM
XLAT_TABLE_SECTION
>
RAM
...
...
bl31/bl31.ld.S
View file @
568a8817
...
...
@@ -115,17 +115,7 @@ SECTIONS
__RW_START__
=
.
;
DATA_SECTION
>
RAM
/
*
*
.
rela
.
dyn
needs
to
come
after
.
data
for
the
read
-
elf
utility
to
parse
*
this
section
correctly
.
Ensure
8
-
byte
alignment
so
that
the
fields
of
*
RELA
data
structure
are
aligned
.
*/
.
=
ALIGN
(
8
)
;
__RELA_START__
=
.
;
.
rela.dyn
.
:
{
}
>
RAM
__RELA_END__
=
.
;
RELA_SECTION
>
RAM
#ifdef BL31_PROGBITS_LIMIT
ASSERT
(.
<=
BL31_PROGBITS_LIMIT
,
"BL31 progbits has exceeded its limit."
)
...
...
bl32/tsp/tsp.ld.S
View file @
568a8817
...
...
@@ -71,17 +71,7 @@ SECTIONS
__RW_START__
=
.
;
DATA_SECTION
>
RAM
/
*
*
.
rela
.
dyn
needs
to
come
after
.
data
for
the
read
-
elf
utility
to
parse
*
this
section
correctly
.
Ensure
8
-
byte
alignment
so
that
the
fields
of
*
RELA
data
structure
are
aligned
.
*/
.
=
ALIGN
(
8
)
;
__RELA_START__
=
.
;
.
rela.dyn
.
:
{
}
>
RAM
__RELA_END__
=
.
;
RELA_SECTION
>
RAM
#ifdef TSP_PROGBITS_LIMIT
ASSERT
(.
<=
TSP_PROGBITS_LIMIT
,
"TSP progbits has exceeded its limit."
)
...
...
include/common/bl_common.ld.h
View file @
568a8817
...
...
@@ -101,6 +101,17 @@
__DATA_END__ = .; \
}
/*
* .rela.dyn needs to come after .data for the read-elf utility to parse
* this section correctly.
*/
#define RELA_SECTION \
.rela.dyn : ALIGN(STRUCT_ALIGN) { \
__RELA_START__ = .; \
*(.rela*) \
__RELA_END__ = .; \
}
#if !(defined(IMAGE_BL31) && RECLAIM_INIT_CODE)
#define STACK_SECTION \
stacks (NOLOAD) : { \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment