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