source: mainline/boot/arch/mips32/loader/_link.ld.in@ e731b0d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e731b0d was 656b789, checked in by Martin Decky <martin@…>, 16 years ago

resurrect big endian support for mips32: switch from mips-sgi-irix5 toolchain to mips-linux-gnu
the kernel is working alright, the user space has some bugs yet

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