OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 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 | } |