diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-10-02 15:39:30 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-10-02 15:39:30 +0000 |
| commit | 4157c23c6fc954cca082bbd7dcdc56f29f4ca202 (patch) | |
| tree | 06ee2755b5769fd67be8e6521b60c7d1e40b57b0 /apps/plugins/plugin.lds | |
| parent | afb49fb45202b6b4c9b6d6260db2063764f2b6d8 (diff) | |
| download | rockbox-4157c23c6fc954cca082bbd7dcdc56f29f4ca202.zip rockbox-4157c23c6fc954cca082bbd7dcdc56f29f4ca202.tar.gz rockbox-4157c23c6fc954cca082bbd7dcdc56f29f4ca202.tar.bz2 rockbox-4157c23c6fc954cca082bbd7dcdc56f29f4ca202.tar.xz | |
imx233/fuze+: don't use iram in plugins and in codecs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30641 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugin.lds')
| -rw-r--r-- | apps/plugins/plugin.lds | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 49d965f..c21d49d 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -171,6 +171,13 @@ OUTPUT_FORMAT(elf32-littlemips) #define IRAM DRAM #define IRAMSIZE 0 +#elif CONFIG_CPU == IMX233 +#include "cpu.h" +/* The IRAM is too small and already partly used by the core */ +#define DRAMORIG CACHED_DRAM_ADDR +#define IRAM DRAM +#define IRAMSIZE 0 + #else #define DRAMORIG 0x09000000 + STUBOFFSET #endif |