1
0
mirror of git://projects.qi-hardware.com/iris.git synced 2024-11-17 12:30:36 +02:00
iris/mips/nanonote/stage1.ld

24 lines
507 B
Plaintext
Raw Normal View History

OUTPUT_ARCH(mips)
ENTRY(__start)
MEMORY
{
2012-09-26 20:03:36 +03:00
ram : ORIGIN = 0x80003000 , LENGTH = 0x800
}
SECTIONS
{
2015-11-19 08:06:57 +02:00
/* Start with the part containing the interrupt and exception code. */
.text : { mips/board/mips_board_stage1_elf-stage1.o(.text*) } > ram
.text : { *(.text*) } > ram
2012-09-26 23:20:38 +03:00
.rodata : { *(.rodata*) *(.note*) } > ram
.sdata : { *(.sdata*) } > ram
.data : { *(.data*) *(.scommon*) *(.reginfo*) } > ram
2015-11-19 08:06:57 +02:00
_gp = ABSOLUTE(.);
.got : { *(.got*) } > ram
.sbss : { *(.sbss*) } > ram
.bss : { *(.bss*) } > ram
}