source: mainline/boot/arch/sparc64/_link.ld.in@ fa9616b4

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

new boot infrastructure

  • more code and metadata unification
  • import of up-to-date implementations from the kernel
  • the boot loaders should behave more similarly on all platforms
  • support for deflate compressed (LZ77) boot components
    • this again allows feasible boot images to be created on mips32
  • IA64 is still not booting
    • the broken forked GNU EFI library has been removed, a replacement of the functionality is on its way
  • Property mode set to 100644
File size: 395 bytes
Line 
1ENTRY(start)
2
3SECTIONS {
4 . = 0x4000;
5 .boot : {
6 *(BOOTSTRAP);
7 *(.text);
8
9 *(.data); /* initialized data */
10 *(.rodata);
11 *(.rodata.*);
12 *(.sdata);
13 *(.reginfo);
14 *(.sbss);
15 *(.bss); /* uninitialized static variables */
16 *(COMMON); /* global variables */
17[[COMPONENTS]]
18 }
19
20 /DISCARD/ : {
21 *(.gnu.*);
22 *(.mdebug*);
23 *(.pdr);
24 *(.comment);
25 *(.note.*);
26 }
27}
Note: See TracBrowser for help on using the repository browser.