Both iriver boot loaders have to use DRAM now, since the unicode codepage table doesn't fit in IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8171 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
637ab47de6
commit
e8224def39
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ SECTIONS
|
|||
stackend = .;
|
||||
} > IRAM
|
||||
|
||||
#ifdef IRIVER_H300_SERIES
|
||||
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
||||
.bss DRAMORIG+0x1000000:
|
||||
#else
|
||||
.bss :
|
||||
|
@ -150,7 +150,7 @@ SECTIONS
|
|||
*(.bss)
|
||||
*(COMMON)
|
||||
_end = .;
|
||||
#ifdef IRIVER_H300_SERIES
|
||||
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
||||
} > DRAM
|
||||
#else
|
||||
} > IRAM
|
||||
|
|
Loading…
Reference in a new issue