rockbox/firmware/decompressor/link.lds
Boris Gjenero ca9111ef64 Add KEEP() around vectors in linker scripts.
Vectors are needed by the CPU, but they don't need to be accessed by Rockbox.
Without the KEEP(), they can be removed when liking with --gc-sections, 
creating a broken binary without any warnings. This tells the linker to not
remove them. It should enable use of --gc-sections for all targets. When not
using --gc-sections, this does not change the binary.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31351 a1c6a512-1295-4272-9138-f99709370657
2011-12-18 06:43:08 +00:00

71 lines
1.1 KiB
Text

OUTPUT_FORMAT(elf32-sh)
#define DRAMORIG 0x09000000
#define DRAMSIZE (MEMORYSIZE * 0x00100000)
#define IRAMORIG 0x0f000000
#define IRAMSIZE 0x00001000
MEMORY
{
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
}
SECTIONS
{
.vectors :
{
_loadaddress = .;
_dramend = . + DRAMSIZE;
KEEP(*(.vectors))
. = ALIGN(0x200);
} > DRAM
.text :
{
*(.start)
*(.text)
. = ALIGN(0x4);
} > DRAM
.rodata :
{
*(.rodata*)
*(.rodata.str1.1)
*(.rodata.str1.4)
. = ALIGN(0x4);
} > DRAM
.data :
{
*(.data)
. = ALIGN(0x4);
_iramcopy = .;
} > DRAM
.iram IRAMORIG : AT ( _iramcopy )
{
_iramstart = .;
*(.icode)
*(.idata)
. = ALIGN(0x4);
_iramend = .;
} > IRAM
.stack :
{
_stackbegin = .;
*(.stack)
. += 0x0800;
_stackend = .;
} > IRAM
.bss :
{
_edata = .;
*(.bss)
*(COMMON)
. = ALIGN(0x4);
_end = .;
} > DRAM
}