source: mainline/boot/arch/mips32/loader/_link.ld.in.binary@ 85156d3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 85156d3 was 960f8476, checked in by Martin Decky <martin@…>, 17 years ago

finish unifying pack script

  • Property mode set to 100644
File size: 354 bytes
Line 
1OUTPUT_FORMAT("binary")
2ENTRY(start)
3
4SECTIONS {
5 .boot 0xbfc00000: AT (0) {
6 *(BOOTSTRAP);
7 *(.text);
8
9 *(.rodata);
10 *(.rodata.*);
11 *(.data); /* initialized data */
12 *(.sdata);
13 *(.sdata2);
14 *(.sbss);
15 *(.scommon);
16 *(.bss); /* uninitialized static variables */
17 *(COMMON); /* global variables */
18 *(.reginfo);
19[[COMPONENTS]]
20 }
21}
Note: See TracBrowser for help on using the repository browser.