Changes in boot/arch/sparc64/_link.ld.in [c89ae25:5631c9c] in mainline
- File:
-
- 1 edited
-
boot/arch/sparc64/_link.ld.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/_link.ld.in
rc89ae25 r5631c9c 5 5 .boot : { 6 6 loader_start = .; 7 KEEP(*(BOOTSTRAP));8 *(.text .text.*);7 *(BOOTSTRAP); 8 *(.text.*); 9 9 10 *(.data .data.*); /* initialized data */ 11 *(.rodata .rodata.*); 12 *(.sdata .sdata.*); 13 *(.sbss .sbss.*); 14 *(.bss .bss.*); /* uninitialized static variables */ 10 *(.data); /* initialized data */ 11 *(.rodata); 12 *(.rodata.*); 13 *(.sdata); 14 *(.reginfo); 15 *(.sbss); 16 *(.bss); /* uninitialized static variables */ 15 17 *(COMMON); /* global variables */ 16 18 loader_end = .; 17 19 payload_start = .; 18 KEEP(*(.payload));20 *(.payload); 19 21 payload_end = .; 20 22 }
Note:
See TracChangeset
for help on using the changeset viewer.
