Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
9dc24cbd
Commit
9dc24cbd
authored
5 years ago
by
Soby Mathew
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "bl2_el3: clean up linker script" into integration
parents
fc3c382f
2f6f00dc
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bl2/bl2_el3.ld.S
+3
-16
bl2/bl2_el3.ld.S
with
3 additions
and
16 deletions
+3
-16
bl2/bl2_el3.ld.S
View file @
9dc24cbd
...
...
@@ -21,6 +21,9 @@ MEMORY {
#endif
}
#if !BL2_IN_XIP_MEM
#define ROM RAM
#endif
SECTIONS
{
...
...
@@ -45,11 +48,7 @@ SECTIONS
*(.
vectors
)
.
=
ALIGN
(
PAGE_SIZE
)
;
__TEXT_END__
=
.
;
#if BL2_IN_XIP_MEM
}
>
ROM
#else
}
>
RAM
#endif
.
rodata
.
:
{
__RODATA_START__
=
.
;
...
...
@@ -72,11 +71,7 @@ SECTIONS
.
=
ALIGN
(
PAGE_SIZE
)
;
__RODATA_END__
=
.
;
#if BL2_IN_XIP_MEM
}
>
ROM
#else
}
>
RAM
#endif
ASSERT
(
__TEXT_RESIDENT_END__
-
__TEXT_RESIDENT_START__
<=
PAGE_SIZE
,
"
Resident
part
of
BL2
has
exceeded
its
limit
.
")
...
...
@@ -115,11 +110,7 @@ SECTIONS
.
=
ALIGN
(
PAGE_SIZE
)
;
__RO_END__
=
.
;
#if BL2_IN_XIP_MEM
}
>
ROM
#else
}
>
RAM
#endif
#endif
ASSERT
(
__CPU_OPS_END__
>
__CPU_OPS_START__
,
...
...
@@ -146,11 +137,7 @@ SECTIONS
__DATA_RAM_START__
=
.
;
*(.
data
*)
__DATA_RAM_END__
=
.
;
#if BL2_IN_XIP_MEM
}
>
RAM
AT
>
ROM
#else
}
>
RAM
#endif
stacks
(
NOLOAD
)
:
{
__STACKS_START__
=
.
;
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help