Changes in boot/arch/riscv64/_link.ld.in [8b6aa39:ae8d7b0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/riscv64/_link.ld.in
r8b6aa39 rae8d7b0 1 #include <arch/arch.h> 2 1 3 ENTRY(start) 2 4 3 5 SECTIONS { 6 . = PHYSMEM_START; 7 4 8 .text : { 5 9 *(BOOTSTRAP); 6 10 *(.text); 7 11 } 12 13 . = ALIGN(0x1000); 14 .htif : { 15 htif_page = .; 16 *(.htif) 17 } 18 . = ALIGN(0x1000); 19 20 . = ALIGN(0x1000); 21 .pt : { 22 pt_page = .; 23 *(.pt) 24 } 25 . = ALIGN(0x1000); 8 26 9 27 .data : { … … 17 35 *(.bss); /* uninitialized static variables */ 18 36 *(COMMON); /* global variables */ 19 [[COMPONENTS]] 37 *(.components); 20 38 } 21 39
Note:
See TracChangeset
for help on using the changeset viewer.