2011-03-26 14:09:11 +01:00
|
|
|
/* Stub out these functions since we don't use them anyway */
|
|
|
|
PROVIDE ( vPortSVCHandler = 0 ) ;
|
|
|
|
PROVIDE ( xPortPendSVHandler = 0 ) ;
|
|
|
|
PROVIDE ( xPortSysTickHandler = 0 ) ;
|
|
|
|
|
2010-09-19 20:27:53 +02:00
|
|
|
_estack = 0x20004FF0;
|
|
|
|
|
|
|
|
/* Section Definitions */
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text :
|
|
|
|
{
|
2011-05-23 23:27:04 +02:00
|
|
|
PROVIDE (pios_isr_vector_table_base = .);
|
2010-09-19 20:27:53 +02:00
|
|
|
KEEP(*(.isr_vector .isr_vector.*))
|
|
|
|
*(.text .text.* .gnu.linkonce.t.*)
|
|
|
|
*(.glue_7t) *(.glue_7)
|
|
|
|
*(.rodata .rodata* .gnu.linkonce.r.*)
|
2011-04-25 00:37:45 +02:00
|
|
|
} > BL_FLASH
|
2010-09-19 20:27:53 +02:00
|
|
|
|
|
|
|
.ARM.extab :
|
|
|
|
{
|
|
|
|
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
2011-04-25 00:37:45 +02:00
|
|
|
} > BL_FLASH
|
2010-09-19 20:27:53 +02:00
|
|
|
|
|
|
|
.ARM.exidx :
|
|
|
|
{
|
|
|
|
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
2011-04-25 00:37:45 +02:00
|
|
|
} > BL_FLASH
|
2010-09-19 20:27:53 +02:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
_etext = .;
|
|
|
|
_sidata = .;
|
|
|
|
|
|
|
|
.data : AT (_etext)
|
|
|
|
{
|
|
|
|
_sdata = .;
|
|
|
|
*(.data .data.*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
_edata = . ;
|
|
|
|
} > SRAM
|
|
|
|
|
|
|
|
/* .bss section which is used for uninitialized data */
|
|
|
|
.bss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_sbss = . ;
|
|
|
|
*(.bss .bss.*)
|
|
|
|
*(COMMON)
|
|
|
|
. = ALIGN(4);
|
|
|
|
_ebss = . ;
|
|
|
|
} > SRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
_end = . ;
|
2011-05-15 02:32:17 +02:00
|
|
|
|
|
|
|
.boardinfo :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
KEEP(*(.boardinfo))
|
|
|
|
. = ALIGN(4);
|
|
|
|
} > BD_INFO
|
2011-04-25 00:37:45 +02:00
|
|
|
}
|