strip the kernel version suffix from target directories, except for brcm-2.4 (the...
[openwrt.git] / target / linux / at91 / image / dfboot / src / elf32-littlearm.lds
1 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
2 OUTPUT_ARCH(arm)
3 ENTRY(_start)
4 SECTIONS
5 {
6         . = 0x00000000;
7
8         . = ALIGN(4);
9         .text : { *(.text) }
10
11         . = ALIGN(4);
12         .rodata : { *(.rodata) }
13
14         . = ALIGN(4);
15         .data : { *(.data) }
16
17         . = ALIGN(4);
18         .bss : { *(.bss) }
19 }