2019-04-01 19:43:07 +00:00
|
|
|
ENTRY(start)
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
KERNEL_VIRTUAL_BASE = 0xc0000000;
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
2021-03-04 17:18:43 +00:00
|
|
|
. = KERNEL_VIRTUAL_BASE + 0x00100000;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2020-01-17 18:59:20 +00:00
|
|
|
start_of_kernel_image = .;
|
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.text ALIGN(4K) : AT (ADDR(.text) - KERNEL_VIRTUAL_BASE)
|
2020-01-16 08:46:09 +00:00
|
|
|
{
|
2020-05-06 15:40:06 +00:00
|
|
|
$<TARGET_OBJECTS:boot>
|
2020-01-16 08:46:09 +00:00
|
|
|
*(.multiboot)
|
2020-01-06 12:53:30 +00:00
|
|
|
start_of_kernel_text = .;
|
2020-12-20 01:48:56 +00:00
|
|
|
|
|
|
|
start_of_safemem_text = .;
|
2021-02-09 22:49:02 +00:00
|
|
|
KEEP(*(.text.safemem))
|
2020-12-20 01:48:56 +00:00
|
|
|
end_of_safemem_text = .;
|
|
|
|
start_of_safemem_atomic_text = .;
|
2021-02-09 22:49:02 +00:00
|
|
|
KEEP(*(.text.safemem.atomic))
|
2020-12-20 01:48:56 +00:00
|
|
|
end_of_safemem_atomic_text = .;
|
|
|
|
|
2021-02-09 22:49:02 +00:00
|
|
|
*(.text*)
|
2021-02-19 17:21:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.unmap_after_init ALIGN(4K) : AT (ADDR(.unmap_after_init) - KERNEL_VIRTUAL_BASE)
|
2021-02-19 17:21:54 +00:00
|
|
|
{
|
|
|
|
start_of_unmap_after_init = .;
|
|
|
|
*(.unmap_after_init*);
|
|
|
|
end_of_unmap_after_init = .;
|
|
|
|
|
2020-01-06 12:53:30 +00:00
|
|
|
end_of_kernel_text = .;
|
2020-01-16 08:46:09 +00:00
|
|
|
}
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.rodata ALIGN(4K) : AT (ADDR(.rodata) - KERNEL_VIRTUAL_BASE)
|
2020-01-16 08:46:09 +00:00
|
|
|
{
|
2020-08-10 15:44:35 +00:00
|
|
|
start_heap_ctors = .;
|
|
|
|
*libkernel_heap.a:*(.ctors)
|
|
|
|
end_heap_ctors = .;
|
|
|
|
|
2020-01-16 08:46:09 +00:00
|
|
|
start_ctors = .;
|
|
|
|
*(.ctors)
|
|
|
|
end_ctors = .;
|
2019-10-31 18:01:13 +00:00
|
|
|
|
2021-02-09 22:49:02 +00:00
|
|
|
*(.rodata*)
|
2020-01-16 08:46:09 +00:00
|
|
|
}
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.data ALIGN(4K) : AT (ADDR(.data) - KERNEL_VIRTUAL_BASE)
|
2020-01-16 08:46:09 +00:00
|
|
|
{
|
2020-01-06 12:53:30 +00:00
|
|
|
start_of_kernel_data = .;
|
2021-02-09 22:49:02 +00:00
|
|
|
*(.data*)
|
2020-01-06 12:53:30 +00:00
|
|
|
end_of_kernel_data = .;
|
2020-01-16 08:46:09 +00:00
|
|
|
}
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.ro_after_init ALIGN(4K) (NOLOAD) : AT(ADDR(.ro_after_init) - KERNEL_VIRTUAL_BASE)
|
2021-02-14 16:35:07 +00:00
|
|
|
{
|
|
|
|
start_of_ro_after_init = .;
|
|
|
|
*(.ro_after_init);
|
|
|
|
end_of_ro_after_init = .;
|
|
|
|
}
|
|
|
|
|
2021-03-04 17:18:43 +00:00
|
|
|
.bss ALIGN(4K) (NOLOAD) : AT (ADDR(.bss) - KERNEL_VIRTUAL_BASE)
|
2020-01-16 08:46:09 +00:00
|
|
|
{
|
2020-01-06 12:53:30 +00:00
|
|
|
start_of_kernel_bss = .;
|
2020-01-17 18:59:20 +00:00
|
|
|
*(page_tables)
|
2020-01-16 08:46:09 +00:00
|
|
|
*(COMMON)
|
|
|
|
*(.bss)
|
2020-01-06 12:53:30 +00:00
|
|
|
end_of_kernel_bss = .;
|
2021-01-20 16:49:55 +00:00
|
|
|
|
|
|
|
. = ALIGN(4K);
|
|
|
|
*(.heap)
|
|
|
|
. = ALIGN(4K);
|
|
|
|
*(.super_pages)
|
2020-01-16 08:46:09 +00:00
|
|
|
}
|
2020-01-17 18:59:20 +00:00
|
|
|
|
|
|
|
end_of_kernel_image = .;
|
2018-10-16 09:01:38 +00:00
|
|
|
}
|