1
0
Fork 0
forked from len0rd/rockbox

Make the H10 bootloader work again. Also fix the same problem that might be affecting other PP bootloaders.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17357 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Barry Wardell 2008-05-04 14:42:53 +00:00
parent 5f7432fdff
commit 27f59f64c6
4 changed files with 8 additions and 8 deletions

View file

@ -68,8 +68,8 @@ SECTIONS
/* The bss section is too large for IRAM - we just move it 16MB into the
DRAM */
. = (DRAMORIG+16*1024*1024);
.bss : {
. = DRAMORIG;
.bss . + (16*1024*1024): {
_edata = .;
*(.bss*);
*(.ibss);

View file

@ -52,8 +52,8 @@ SECTIONS
/* The bss section is too large for IRAM - we just move it 16MB into the
DRAM */
. = (DRAMORIG+16*1024*1024);
.bss : {
. = DRAMORIG;
.bss . + (16*1024*1024) : {
_edata = .;
*(.bss*);
*(.ibss);

View file

@ -52,8 +52,8 @@ SECTIONS
/* The bss section is too large for IRAM - we just move it 16MB into the
DRAM */
. = (DRAMORIG+16*1024*1024);
.bss : {
. = DRAMORIG;
.bss . + (16*1024*1024): {
_edata = .;
*(.bss*);
*(.ibss);

View file

@ -54,8 +54,8 @@ SECTIONS
/* The bss section is too large for IRAM - we just move it 16MB into the
DRAM */
. = (DRAMORIG+16*1024*1024);
.bss : {
. = DRAMORIG;
.bss . + (16*1024*1024) : {
_edata = .;
*(.bss*);
*(.ibss);