OpenWrt – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
4 office 1 OUTPUT_ARCH(mips)
2 ENTRY(_start)
3 SECTIONS
4 {
5 /* Read-only sections, merged into text segment: */
6 . = @LOADADDR@;
7 .text :
8 {
9 _ftext = . ;
10 *(.text)
11 *(.rodata)
12 } =0
13  
14 .reginfo : { *(.reginfo) }
15  
16 .bss :
17 {
18 *(.bss)
19 }
20 }