You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
433 B
39 lines
433 B
ENTRY(_start)
|
|
|
|
KERNEL_BEGIN = 0xffffff0000000000;
|
|
|
|
SECTIONS {
|
|
|
|
. = KERNEL_BEGIN;
|
|
|
|
.rodata ALIGN(4K):
|
|
{
|
|
*(.rodata .rodata.*)
|
|
}
|
|
|
|
.text ALIGN(4K):
|
|
{
|
|
stext = .;
|
|
_copy_user_start = .;
|
|
*(.text.copy_user)
|
|
_copy_user_end = .;
|
|
*(.text .text.*)
|
|
etext = .;
|
|
}
|
|
|
|
.data ALIGN(4K):
|
|
{
|
|
*(.data .data.*)
|
|
}
|
|
|
|
.got ALIGN(4K):
|
|
{
|
|
*(.got .got.*)
|
|
}
|
|
|
|
.bss ALIGN(4K):
|
|
{
|
|
*(.bss .bss.*)
|
|
}
|
|
}
|