fix WhatsNew for release
[librepilot.git] / flight / pios / stm32f0x / link_stm32f05x.ld
blobc17c9b7807d3c8b51b917d23a76c4b5e4e64c612
1 MEMORY
3     FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 32K
4     SRAM (rwx) : ORIGIN = 0x20000000, LENGTH = 4K
7 _estack = 0x20000FF0;
9 /* Section Definitions */
10 SECTIONS
12     .text :
13     {
14         KEEP(*(.isr_vector .isr_vector.*))
15         *(.text .text.* .gnu.linkonce.t.*)
16         *(.glue_7t) *(.glue_7)
17         *(.rodata .rodata* .gnu.linkonce.r.*)
18     } > FLASH
20     .ARM.extab :
21     {
22         *(.ARM.extab* .gnu.linkonce.armextab.*)
23     } > FLASH
25     .ARM.exidx :
26     {
27         *(.ARM.exidx* .gnu.linkonce.armexidx.*)
28     } > FLASH
30     . = ALIGN(4);
31     _etext = .;
32     _sidata = .;
34     .data : AT (_etext)
35     {
36         _sdata = .;
37         *(.data .data.*)
38         . = ALIGN(4);
39         _edata = . ;
40     } > SRAM
42     /* .bss section which is used for uninitialized data */
43     .bss (NOLOAD) :
44     {
45         _sbss = . ;
46         *(.bss .bss.*)
47         *(COMMON)
48         . = ALIGN(4);
49         _ebss = . ;
50     } > SRAM
52     . = ALIGN(4);
53     _end = . ;
55     /* Stabs debugging sections.  */
56     .stab          0 : { *(.stab) }
57     .stabstr       0 : { *(.stabstr) }
58     .stab.excl     0 : { *(.stab.excl) }
59     .stab.exclstr  0 : { *(.stab.exclstr) }
60     .stab.index    0 : { *(.stab.index) }
61     .stab.indexstr 0 : { *(.stab.indexstr) }
62     .comment       0 : { *(.comment) }
63     /* DWARF debug sections.
64        Symbols in the DWARF debugging sections are relative to the beginning
65        of the section so we begin them at 0.  */
66     /* DWARF 1 */
67     .debug          0 : { *(.debug) }
68     .line           0 : { *(.line) }
69     /* GNU DWARF 1 extensions */
70     .debug_srcinfo  0 : { *(.debug_srcinfo) }
71     .debug_sfnames  0 : { *(.debug_sfnames) }
72     /* DWARF 1.1 and DWARF 2 */
73     .debug_aranges  0 : { *(.debug_aranges) }
74     .debug_pubnames 0 : { *(.debug_pubnames) }
75     /* DWARF 2 */
76     .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
77     .debug_abbrev   0 : { *(.debug_abbrev) }
78     .debug_line     0 : { *(.debug_line) }
79     .debug_frame    0 : { *(.debug_frame) }
80     .debug_str      0 : { *(.debug_str) }
81     .debug_loc      0 : { *(.debug_loc) }
82     .debug_macinfo  0 : { *(.debug_macinfo) }
83     /* SGI/MIPS DWARF 2 extensions */
84     .debug_weaknames 0 : { *(.debug_weaknames) }
85     .debug_funcnames 0 : { *(.debug_funcnames) }
86     .debug_typenames 0 : { *(.debug_typenames) }
87     .debug_varnames  0 : { *(.debug_varnames) }