summaryrefslogtreecommitdiffstats
path: root/src/target
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2012-01-29 11:28:41 +0100
committerHarald Welte <laforge@gnumonks.org>2012-02-04 00:04:58 +0100
commit0fd73c5e0f69e528689617837864fc69ff6d59a6 (patch)
treefd27934dde971fe7a055ba4a133a497fc04a86b7 /src/target
parent7cc4a4b324bcf65b5d383faf2b3e727953c8df81 (diff)
firmware: Increased data size for for ram linker scripts.
This is required, since monitor app requires a litte more than 64k.
Diffstat (limited to 'src/target')
-rw-r--r--src/target/firmware/board/compal/highram.lds4
-rw-r--r--src/target/firmware/board/compal/ram.lds4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/target/firmware/board/compal/highram.lds b/src/target/firmware/board/compal/highram.lds
index 1f0a5a67..498a2fa1 100644
--- a/src/target/firmware/board/compal/highram.lds
+++ b/src/target/firmware/board/compal/highram.lds
@@ -16,9 +16,9 @@ MEMORY
/* lowram: could be anything, we place exception vectors here */
XRAM (rw) : ORIGIN = 0x00800000, LENGTH = 0x00020000
/* highram binary: our text, initialized data */
- LRAM (rw) : ORIGIN = 0x00820000, LENGTH = 0x00010000
+ LRAM (rw) : ORIGIN = 0x00820000, LENGTH = 0x00014000
/* highram binary: our unitialized data, stacks, heap */
- IRAM (rw) : ORIGIN = 0x00830000, LENGTH = 0x00010000
+ IRAM (rw) : ORIGIN = 0x00834000, LENGTH = 0x0000c000
}
SECTIONS
{
diff --git a/src/target/firmware/board/compal/ram.lds b/src/target/firmware/board/compal/ram.lds
index 342870dc..9503edee 100644
--- a/src/target/firmware/board/compal/ram.lds
+++ b/src/target/firmware/board/compal/ram.lds
@@ -11,9 +11,9 @@ ENTRY(_start)
MEMORY
{
/* compal-loaded binary: our text, initialized data */
- LRAM (rw) : ORIGIN = 0x00800000, LENGTH = 0x00010000
+ LRAM (rw) : ORIGIN = 0x00800000, LENGTH = 0x00014000
/* compal-loaded binary: our unitialized data, stacks, heap */
- IRAM (rw) : ORIGIN = 0x00810000, LENGTH = 0x00010000
+ IRAM (rw) : ORIGIN = 0x00814000, LENGTH = 0x0000c000
}
SECTIONS
{