1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

Kernel: Add all memory files to aarch64 and fix resulting linker errors

This commit is contained in:
James Mintram 2022-04-02 23:49:19 +01:00 committed by Brian Gianforcaro
parent 2e63215346
commit 9186ed3101
3 changed files with 137 additions and 0 deletions

View file

@ -39,6 +39,20 @@ SECTIONS
physical memory. 8M is wasteful, so this should be properly calculated.
*/
/* FIXME: Placeholder to satisfy linker */
start_of_kernel_ksyms = .;
end_of_kernel_ksyms = .;
start_of_kernel_text = .;
end_of_kernel_text = .;
start_of_kernel_image = .;
end_of_kernel_image = .;
start_of_unmap_after_init = .;
end_of_unmap_after_init = .;
start_of_ro_after_init = .;
end_of_ro_after_init = .;
start_of_kernel_data = .;
end_of_kernel_data = .;
. = ALIGN(4K);
page_tables_phys_start = .;