summaryrefslogtreecommitdiff
path: root/firmware/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/app.lds')
-rw-r--r--firmware/app.lds3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index 7fabf3563b..d2a9582a3d 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -41,7 +41,8 @@ INPUT(target/sh/crt0.o)
41#define DRAMSIZE (MEMORYSIZE * 0x100000) - 0x100 - PLUGINSIZE - STUBOFFSET - CODECSIZE - LCD_BUFFER_SIZE - TTB_SIZE 41#define DRAMSIZE (MEMORYSIZE * 0x100000) - 0x100 - PLUGINSIZE - STUBOFFSET - CODECSIZE - LCD_BUFFER_SIZE - TTB_SIZE
42#elif CONFIG_CPU==IMX31L 42#elif CONFIG_CPU==IMX31L
43#include "imx31l.h" 43#include "imx31l.h"
44#define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE - STUBOFFSET - CODECSIZE - TTB_SIZE 44/* Subtract 1MB for the FRAME/TTB section */
45#define DRAMSIZE (MEMORYSIZE * 0x100000 - 0x100000) - PLUGINSIZE - STUBOFFSET - CODECSIZE
45#elif CONFIG_CPU==DM320 46#elif CONFIG_CPU==DM320
46#include "dm320.h" 47#include "dm320.h"
47#define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE - STUBOFFSET - CODECSIZE - LCD_BUFFER_SIZE - TTB_SIZE 48#define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE - STUBOFFSET - CODECSIZE - LCD_BUFFER_SIZE - TTB_SIZE