Root/
| 1 | OUTPUT_ARCH(mips) |
| 2 | ENTRY(@ENTRY@) |
| 3 | SECTIONS |
| 4 | { |
| 5 | /* Read-only sections, merged into text segment: */ |
| 6 | . = @LOADADDR@; |
| 7 | .text : |
| 8 | { |
| 9 | _ftext = . ; |
| 10 | *(.text.entry) |
| 11 | *(.text) |
| 12 | *(.rodata) |
| 13 | lzma_start = .; |
| 14 | kernel.o |
| 15 | lzma_end = .; |
| 16 | } =0 |
| 17 | |
| 18 | .reginfo : { *(.reginfo) } |
| 19 | |
| 20 | .bss : |
| 21 | { |
| 22 | *(.bss) |
| 23 | } |
| 24 | } |
| 25 |
