mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-18 04:27:38 -04:00
Fix reds and yellows. The targets that showed have more that just #define (like inline functions) in their soc specific header, which the linker doesn't like of course.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21002 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d2595ec075
commit
a9fdf86459
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "cpu.h"
|
|
||||||
|
|
||||||
/* These output formats should be in the config-files */
|
/* These output formats should be in the config-files */
|
||||||
|
|
||||||
|
@ -42,12 +41,13 @@ OUTPUT_FORMAT(elf32-littlemips)
|
||||||
#define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - PLUGIN_BUFFER_SIZE - CODEC_SIZE - LCD_TTB_AREA
|
#define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - PLUGIN_BUFFER_SIZE - CODEC_SIZE - LCD_TTB_AREA
|
||||||
|
|
||||||
#elif CONFIG_CPU==S3C2440
|
#elif CONFIG_CPU==S3C2440
|
||||||
#define LCD_BUFFER_SIZE (LCD_WIDTH*LCD_HEIGHT*2)
|
#include "cpu.h"
|
||||||
/* must be 16Kb (0x4000) aligned */
|
/* must be 16Kb (0x4000) aligned */
|
||||||
#define TTB_SIZE (0x4000)
|
#define TTB_SIZE (0x4000)
|
||||||
#define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - PLUGIN_BUFFER_SIZE - CODEC_SIZE - LCD_BUFFER_SIZE - TTB_SIZE
|
#define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - PLUGIN_BUFFER_SIZE - CODEC_SIZE - LCD_BUFFER_SIZE - TTB_SIZE
|
||||||
|
|
||||||
#elif CONFIG_CPU==AS3525
|
#elif CONFIG_CPU==AS3525
|
||||||
|
#include "cpu.h"
|
||||||
#define DRAMORIG DRAM_ORIG
|
#define DRAMORIG DRAM_ORIG
|
||||||
#ifdef AMS_LOWMEM
|
#ifdef AMS_LOWMEM
|
||||||
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - STUBOFFSET - TTB_SIZE)
|
#define DRAMSIZE (DRAM_SIZE - PLUGIN_BUFFER_SIZE - STUBOFFSET - TTB_SIZE)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue