ramips: move relocating loader to common location
[15.05/openwrt.git] / target / linux / generic / image / relocate / loader.lds
1 OUTPUT_ARCH(mips)
2 SECTIONS {
3         .text : {
4                 _code_start = .;
5                 *(.text)
6                 *(.text.*)
7                 *(.rodata)
8                 *(.rodata.*)
9                 *(.data)
10                 *(.data.*)
11         }
12
13         . = ALIGN(32);
14
15         _code_end = .;
16 }