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:
parent
5f7432fdff
commit
27f59f64c6
4 changed files with 8 additions and 8 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue