ca9111ef64
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
91 lines
1.4 KiB
Text
91 lines
1.4 KiB
Text
#include "config.h"
|
|
|
|
OUTPUT_FORMAT("elf32-littlemips")
|
|
OUTPUT_ARCH(MIPS)
|
|
ENTRY(_start)
|
|
STARTUP(target/mips/ingenic_jz47xx/crt0.o)
|
|
|
|
#define DRAMSIZE ((MEMORYSIZE-4) * 0x100000)
|
|
|
|
#define DRAMORIG 0x80E04000
|
|
#define IRAMORIG 0x80000000
|
|
#define IRAMSIZE 16K
|
|
|
|
MEMORY
|
|
{
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = DRAMORIG;
|
|
|
|
.text :
|
|
{
|
|
_loadaddress = .;
|
|
*(.init.text);
|
|
*(.text*);
|
|
} > DRAM
|
|
|
|
. = ALIGN(4);
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata*);
|
|
} > DRAM
|
|
|
|
. = ALIGN(4);
|
|
|
|
.data :
|
|
{
|
|
*(.data*);
|
|
*(.sdata*);
|
|
*(.rel.dyn);
|
|
} > DRAM
|
|
|
|
. = ALIGN(4);
|
|
|
|
.iram IRAMORIG:
|
|
{
|
|
_iramstart = .;
|
|
KEEP(*(.vectors.1));
|
|
. = 0x100;
|
|
KEEP(*(.vectors.2));
|
|
. = 0x180;
|
|
KEEP(*(.vectors.3));
|
|
. = 0x200;
|
|
KEEP(*(.vectors.4));
|
|
KEEP(*(.vectors));
|
|
|
|
*(.icode);
|
|
*(.irodata);
|
|
*(.idata);
|
|
KEEP(*(.vectors*))
|
|
_iramend = .;
|
|
} > IRAM AT> DRAM
|
|
_iramcopy = LOADADDR(.iram);
|
|
|
|
. = ALIGN(4);
|
|
|
|
.bss (NOLOAD):
|
|
{
|
|
_edata = .;
|
|
*(.sbss*);
|
|
*(.bss*);
|
|
*(.ibss*);
|
|
*(COMMON);
|
|
*(.scommon*);
|
|
_end = .;
|
|
} > DRAM
|
|
|
|
_bootend = .;
|
|
|
|
.stack (NOLOAD):
|
|
{
|
|
*(.stack)
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
stackend = .;
|
|
} > IRAM
|
|
}
|