ladybird/Kernel/linker.ld

63 lines
1.2 KiB
Plaintext
Raw Normal View History

ENTRY(start)
SECTIONS
{
. = 0xc0100000;
start_of_kernel_image = .;
.text ALIGN(4K) : AT (ADDR(.text) - 0xc0000000)
2020-01-16 11:46:09 +03:00
{
$<TARGET_OBJECTS:boot>
2020-01-16 11:46:09 +03:00
*(.multiboot)
start_of_kernel_text = .;
2020-01-16 11:46:09 +03:00
*(.text)
*(.text.startup)
start_of_safemem_text = .;
*(.text.safemem)
end_of_safemem_text = .;
start_of_safemem_atomic_text = .;
*(.text.safemem.atomic)
end_of_safemem_atomic_text = .;
end_of_kernel_text = .;
2020-01-16 11:46:09 +03:00
}
.rodata ALIGN(4K) : AT (ADDR(.rodata) - 0xc0000000)
2020-01-16 11:46:09 +03:00
{
start_heap_ctors = .;
*libkernel_heap.a:*(.ctors)
end_heap_ctors = .;
2020-01-16 11:46:09 +03:00
start_ctors = .;
*(.ctors)
end_ctors = .;
2020-01-16 11:46:09 +03:00
*(.rodata)
}
.data ALIGN(4K) : AT (ADDR(.data) - 0xc0000000)
2020-01-16 11:46:09 +03:00
{
start_of_kernel_data = .;
2020-01-16 11:46:09 +03:00
*(.data)
end_of_kernel_data = .;
2020-01-16 11:46:09 +03:00
}
.bss ALIGN(4K) (NOLOAD) : AT (ADDR(.bss) - 0xc0000000)
2020-01-16 11:46:09 +03:00
{
start_of_kernel_bss = .;
*(page_tables)
2020-01-16 11:46:09 +03:00
*(COMMON)
*(.bss)
end_of_kernel_bss = .;
. = ALIGN(4K);
*(.heap)
. = ALIGN(4K);
*(.super_pages)
2020-01-16 11:46:09 +03:00
}
end_of_kernel_image = .;
}