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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3bacee1 was f1380b7, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

  • Property mode set to 100644
File size: 395 bytes
RevLine 
[656b789]1ENTRY(start)
2
[960f8476]3SECTIONS {
[4872160]4 . = 0x4000;
5 .boot : {
[e19d667]6 *(BOOTSTRAP);
7 *(.text);
[f1380b7]8
[4872160]9 *(.data); /* initialized data */
[e19d667]10 *(.rodata);
11 *(.rodata.*);
12 *(.sdata);
[4872160]13 *(.reginfo);
[e19d667]14 *(.sbss);
[656b789]15 *(.bss); /* uninitialized static variables */
16 *(COMMON); /* global variables */
[4646710]17 *(.components);
[960f8476]18 }
[f1380b7]19
[4872160]20 /DISCARD/ : {
21 *(.gnu.*);
22 *(.mdebug*);
23 *(.pdr);
24 *(.comment);
25 *(.note.*);
26 }
[960f8476]27}
Note: See TracBrowser for help on using the repository browser.