1 OUTPUT_FORMAT("elf32-i386")
13 __text_start = ABSOLUTE(.);
21 __text_end = ABSOLUTE(.);
25 /* Read-write data (initialised) */
28 __data_start = ABSOLUTE(.);
29 __data_lma = LOADADDR(.data);
30 __data_vma = ABSOLUTE(.);
33 __data_end = ABSOLUTE(.);
37 /* Read-write data (uninitialised) */
40 __bss_start = ABSOLUTE(.);
43 __bss_end = ABSOLUTE(.);
47 /* stack used before the scheduler starts */
50 /* 2K for the boot stack. This could be avoided by using the same RAM
51 as used by the FreeRTOS system/interrupt stack. */
53 __stack_for_main = ABSOLUTE( . );
57 /*exception unwinding and source language information */
58 .eh_frame : { KEEP (*(.eh_frame)) . = ALIGN(4); }
60 /* function exports */
61 .drectve : { KEEP (*(.drectve)) }
63 .comment 0 : { *(.comment) }