Common data must be included in .bss or it won't get zeroed in crt0. Fix the archos self-extractor as well to play safe.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19033 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2008-11-07 00:15:53 +00:00
parent 545b51e2e4
commit 4944a1c1e1
7 changed files with 7 additions and 0 deletions

View File

@ -64,6 +64,7 @@ SECTIONS
{
_edata = .;
*(.bss)
*(COMMON)
. = ALIGN(0x4);
_end = .;
} > DRAM

View File

@ -51,6 +51,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > IRAM

View File

@ -73,6 +73,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > DRAM

View File

@ -57,6 +57,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > DRAM

View File

@ -57,6 +57,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > DRAM

View File

@ -59,6 +59,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > DRAM

View File

@ -63,6 +63,7 @@ SECTIONS
_edata = .;
*(.bss*);
*(.ibss);
*(COMMON)
*(.ncbss*);
_end = .;
} > DRAM