usbmodeswitch: Updated to v.1.2.6 from shibby's branch.
[tomato.git] / release / src-rt / shared / xip.lds.in
bloba6e623c34a7a2d3109a8874e87a2793dac079122
1 OUTPUT_ARCH(TARGET_ARCH)
2 ENTRY(startup)
3 SECTIONS {
4         . = TEXT_START;
5         .text : {
6                 _ftext = .;
7                 text_start = .;
8                 *(.text.startup)
9                 *(.init)
10                 *(.textini2.*)
11                 *(.text)
12                 *(.text.*)
13                 *(.fini)
14                 *(.glue_7)
15                 *(.glue_7t)
16                 *(.rdata)
17                 *(.rdata.*)
18                 *(.rodata)
19                 *(.rodata.*)
20                 . = ALIGN(4);
21                 _etext = .;
22                 text_end = .;
23         }
25         . = DATA_START;
26         .data : AT(ADDR(.text)+SIZEOF(.text)) {
27                 _fdata = .;
28                 data_start = .;
29                 *(.data)
30                 *(.dataini2.*)
31                 *(.data.*)
32                 *(.sdata)
33                 . = ALIGN(4);
34                 _edata = .;
35                 data_end = .;
36         }
38         .bss : {
39                 _fbss = .;
40                 bss_start = .;
41                 *(.bss)
42                 *(.bss.*)
43                 *(.sbss)
44                 *(.scommon)
45                 *(COMMON)
46                 bss_end = .;
47         }
49         _end = .;