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
bcdbf945
Commit
bcdbf945
authored
Sep 19, 2014
by
achingupta
Browse files
Merge pull request #212 from jcastillo-arm/jc/tf-issues/252
Fix LENGTH attribute value in linker scripts
parents
8e0bbcb3
d7fbf132
Changes
3
Hide whitespace changes
Inline
Side-by-side
bl1/bl1.ld.S
View file @
bcdbf945
...
@@ -35,8 +35,8 @@ OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
...
@@ -35,8 +35,8 @@ OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
ENTRY
(
bl1_entrypoint
)
ENTRY
(
bl1_entrypoint
)
MEMORY
{
MEMORY
{
ROM
(
rx
)
:
ORIGIN
=
BL1_RO_BASE
,
LENGTH
=
BL1_RO_LIMIT
ROM
(
rx
)
:
ORIGIN
=
BL1_RO_BASE
,
LENGTH
=
BL1_RO_LIMIT
-
BL1_RO_BASE
RAM
(
rwx
)
:
ORIGIN
=
BL1_RW_BASE
,
LENGTH
=
BL1_RW_LIMIT
RAM
(
rwx
)
:
ORIGIN
=
BL1_RW_BASE
,
LENGTH
=
BL1_RW_LIMIT
-
BL1_RW_BASE
}
}
SECTIONS
SECTIONS
...
...
bl2/bl2.ld.S
View file @
bcdbf945
...
@@ -35,7 +35,7 @@ OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
...
@@ -35,7 +35,7 @@ OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
ENTRY
(
bl2_entrypoint
)
ENTRY
(
bl2_entrypoint
)
MEMORY
{
MEMORY
{
RAM
(
rwx
)
:
ORIGIN
=
BL2_BASE
,
LENGTH
=
BL2_LIMIT
RAM
(
rwx
)
:
ORIGIN
=
BL2_BASE
,
LENGTH
=
BL2_LIMIT
-
BL2_BASE
}
}
...
...
bl31/bl31.ld.S
View file @
bcdbf945
...
@@ -36,7 +36,7 @@ ENTRY(bl31_entrypoint)
...
@@ -36,7 +36,7 @@ ENTRY(bl31_entrypoint)
MEMORY
{
MEMORY
{
RAM
(
rwx
)
:
ORIGIN
=
BL31_BASE
,
LENGTH
=
BL31_LIMIT
RAM
(
rwx
)
:
ORIGIN
=
BL31_BASE
,
LENGTH
=
BL31_LIMIT
-
BL31_BASE
}
}
...
...
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