Changes in boot/arch/arm64/_link.ld.in [c89ae25:84176f3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm64/_link.ld.in
rc89ae25 r84176f3 7 7 .text : { 8 8 HIDDEN(loader_start = .); 9 KEEP(*(BOOTSTRAP));10 *(.text .text.*);9 *(BOOTSTRAP); 10 *(.text); 11 11 } 12 12 .dynamic : { *(.dynamic); } … … 17 17 . = 0x8000; 18 18 .data : { 19 *(.data .data.*); /* initialized data */20 *(.rodata .rodata.*);21 *(.bss .bss.*); /* uninitialized static variables */19 *(.data*); /* initialized data */ 20 *(.rodata*); 21 *(.bss); /* uninitialized static variables */ 22 22 *(COMMON); /* global variables */ 23 *(.got .got. *);23 *(.got .got.plt); 24 24 HIDDEN(loader_end = .); 25 25 HIDDEN(payload_start = .); 26 KEEP(*(.payload));26 *(.payload); 27 27 HIDDEN(payload_end = .); 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.