2019-04-01 19:43:07 +00:00
|
|
|
ENTRY(start)
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2020-01-17 18:59:20 +00:00
|
|
|
. = 0xc0100000;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2020-01-17 18:59:20 +00:00
|
|
|
start_of_kernel_image = .;
|
|
|
|
|
|
|
|
.text ALIGN(4K) : AT (ADDR(.text) - 0xc0000000)
|
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-01-16 08:46:09 +00:00
|
|
|
*(.text)
|
|
|
|
*(.text.startup)
|
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
|
|
|
|
2020-01-17 18:59:20 +00:00
|
|
|
.rodata ALIGN(4K) : AT (ADDR(.rodata) - 0xc0000000)
|
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
|
|
|
|
2020-01-16 08:46:09 +00:00
|
|
|
*(.rodata)
|
|
|
|
}
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2020-01-17 18:59:20 +00:00
|
|
|
.data ALIGN(4K) : AT (ADDR(.data) - 0xc0000000)
|
2020-01-16 08:46:09 +00:00
|
|
|
{
|
2020-01-06 12:53:30 +00:00
|
|
|
start_of_kernel_data = .;
|
2020-01-16 08:46:09 +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
|
|
|
|
2020-01-17 18:59:20 +00:00
|
|
|
.bss ALIGN(4K) : AT (ADDR(.bss) - 0xc0000000)
|
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 = .;
|
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
|
|
|
}
|