diff --git a/linker/aarch64.ld b/linker/aarch64.ld index 0cfa101..ccadb8a 100644 --- a/linker/aarch64.ld +++ b/linker/aarch64.ld @@ -16,9 +16,10 @@ SECTIONS __boot_start = .; .text : { - KEEP(*(.text.boot)) + KEEP(*(.text.boot.entry)) // Entry point must go first + *(.text.boot) . = ALIGN(4096); - KEEP(*(.data.boot)) + *(.data.boot) . = ALIGN(4096); /* Here boot code ends */ __boot_end = .; // __boot_end must be 4KiB aligned __ro_start = .; @@ -27,7 +28,7 @@ SECTIONS .vectors ALIGN(2048): { - *(.vectors) + KEEP(*(.vectors)) } .rodata ALIGN(4): diff --git a/nucleus/src/arch/aarch64/boot.rs b/nucleus/src/arch/aarch64/boot.rs index da38448..0e4b72c 100644 --- a/nucleus/src/arch/aarch64/boot.rs +++ b/nucleus/src/arch/aarch64/boot.rs @@ -179,7 +179,7 @@ fn setup_and_enter_el1_from_el3() -> ! { /// [here](https://leiradel.github.io/2019/01/20/Raspberry-Pi-Stubs.html). /// #[no_mangle] -#[link_section = ".text.boot"] +#[link_section = ".text.boot.entry"] pub unsafe extern "C" fn _boot_cores() -> ! { const CORE_0: u64 = 0; const CORE_MASK: u64 = 0x3;