27 lines
343 B
Plaintext
27 lines
343 B
Plaintext
ENTRY(kernel_loader)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 1M;
|
|
|
|
.boot :
|
|
{
|
|
KEEP(*(.multiboot_header))
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
.text :
|
|
{
|
|
*(.data)
|
|
*(.rodata)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
end = .; _end = .; __end = .;
|
|
} |