fix: 🐛 Fix chainboot linker script

This commit is contained in:
Berkus Decker 2023-11-12 00:11:59 +02:00 committed by Berkus Decker
parent 89943857af
commit 4a22e91d77
1 changed files with 2 additions and 2 deletions

View File

@ -91,11 +91,11 @@ SECTIONS
__BSS_START = .; __BSS_START = .;
*(.bss .bss.*) *(.bss .bss.*)
*(COMMON) *(COMMON)
. = ALIGN(PAGE_SIZE); /* Align up to page size */ . = ALIGN(16);
__BSS_SIZE_U64S = (. - __BSS_START) / 8; __BSS_SIZE_U64S = (. - __BSS_START) / 8;
} :segment_data } :segment_data
/DISCARD/ : { *(.comment) *(.gnu*) *(.note*) *(.eh_frame*) *(.text.boot*)} /DISCARD/ : { *(.comment) *(.gnu*) *(.note*) *(.eh_frame*) *(.text.boot*)}
} }
INCLUDE linker/aarch64-exceptions.ld INCLUDE machine/src/arch/aarch64/linker/aarch64-exceptions.ld