mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 20:21:54 +02:00
a3b9071e22
add usb-boot to keep the device code.
32 lines
478 B
Plaintext
32 lines
478 B
Plaintext
OUTPUT_ARCH(mips)
|
|
ENTRY(_start)
|
|
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x80002000 , LENGTH = 0x100000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = ALIGN(4);
|
|
.text : { *(.text*) } > ram
|
|
|
|
. = ALIGN(4);
|
|
.rodata : { *(.rodata*) } > ram
|
|
|
|
. = ALIGN(4);
|
|
.sdata : { *(.sdata*) } > ram
|
|
|
|
. = ALIGN(4);
|
|
.data : { *(.data*) *(.scommon*) *(.reginfo*) } > ram
|
|
|
|
_gp = ABSOLUTE(.); /* Base of small data */
|
|
|
|
.got : { *(.got*) } > ram
|
|
|
|
. = ALIGN(4);
|
|
.sbss : { *(.sbss*) } > ram
|
|
.bss : { *(.bss*) } > ram
|
|
. = ALIGN (4);
|
|
}
|
|
|