Fix bootloader red.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17155 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
94f7d0f290
commit
3b90ab5ab1
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
#include "config.h"
|
||||
#include "imx31l.h"
|
||||
|
||||
ENTRY(start)
|
||||
OUTPUT_FORMAT(elf32-littlearm)
|
||||
|
@ -8,9 +9,10 @@ INPUT(target/arm/imx31/crt0.o)
|
|||
#define DRAMSIZE (1 << 20) /* Limit 1 MB for bootloader */
|
||||
|
||||
#define DRAMORIG (0x02000000-0x00100000)
|
||||
#define IRAM DRAM
|
||||
#define IRAMORIG 0x1FFFC000
|
||||
#define IRAMSIZE 16K
|
||||
/* #define IRAMORIG 0x1FFFC000 */
|
||||
#define IRAM DRAM
|
||||
#define IRAMSIZE IRAM_SIZE
|
||||
#define IRAMORIG DRAMORIG
|
||||
#define FLASHORIG 0x0000000
|
||||
#define FLASHSIZE 1M
|
||||
|
||||
|
|
Loading…
Reference in a new issue