diff options
author | Dave Chapman <dave@dchapman.com> | 2005-02-15 14:00:37 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-02-15 14:00:37 +0000 |
commit | e452383359dc25750b5bb90318fcf4269c4ec2d2 (patch) | |
tree | 945514f895bb55feb90e64b9425e8a04a9b6578b /firmware | |
parent | a11bb63d1ed4715fad571cb388cc2b104edc52bb (diff) |
Increase PLUGINSIZE to 768k for devices with at least 32MB of RAM (currently only iRiver).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5952 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/app.lds | 4 | ||||
-rw-r--r-- | firmware/boot.lds | 4 | ||||
-rw-r--r-- | firmware/rom.lds | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/firmware/app.lds b/firmware/app.lds index edb259aa2b..8e7dc02e27 100644 --- a/firmware/app.lds +++ b/firmware/app.lds @@ -100,7 +100,11 @@ _pluginbuf = 0; +#if MEMORYSIZE >= 32 +#define PLUGINSIZE 0xC0000 +#else #define PLUGINSIZE 0x8000 +#endif #ifdef DEBUG #define STUBOFFSET 0x10000 diff --git a/firmware/boot.lds b/firmware/boot.lds index c61a4c836a..9493db7887 100644 --- a/firmware/boot.lds +++ b/firmware/boot.lds @@ -8,7 +8,11 @@ OUTPUT_FORMAT(elf32-sh) #endif INPUT(crt0.o) +#if MEMORYSIZE >= 32 +#define PLUGINSIZE 0xC0000 +#else #define PLUGINSIZE 0x8000 +#endif #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE diff --git a/firmware/rom.lds b/firmware/rom.lds index 4da1e24c60..749998b637 100644 --- a/firmware/rom.lds +++ b/firmware/rom.lds @@ -8,7 +8,11 @@ OUTPUT_FORMAT(elf32-sh) #endif INPUT(crt0.o) +#if MEMORYSIZE >= 32 +#define PLUGINSIZE 0xC0000 +#else #define PLUGINSIZE 0x8000 +#endif #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE |