forked from metaverse/kernel-dev-old
66 lines
799 B
Plaintext
66 lines
799 B
Plaintext
|
OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
|
||
|
OUTPUT_ARCH(i386:x86-64)
|
||
|
ENTRY(init32)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 1M;
|
||
|
.entry :
|
||
|
{
|
||
|
init32 = .;
|
||
|
*(.entry)
|
||
|
}
|
||
|
.multiboot2 :
|
||
|
{
|
||
|
*(.multiboot2)
|
||
|
}
|
||
|
.cpumeta :
|
||
|
{
|
||
|
*(.cpumeta)
|
||
|
}
|
||
|
. = 4M;
|
||
|
.bss :
|
||
|
{
|
||
|
kstack = .;
|
||
|
*(.bss)
|
||
|
}
|
||
|
. = 16M;
|
||
|
.text :
|
||
|
{
|
||
|
kmain = .;
|
||
|
*(.text)
|
||
|
}
|
||
|
.data :
|
||
|
{
|
||
|
*(.data)
|
||
|
}
|
||
|
.rodata :
|
||
|
{
|
||
|
*(.rodata)
|
||
|
}
|
||
|
.bss :
|
||
|
{
|
||
|
*(.bss)
|
||
|
}
|
||
|
.eh_frame :
|
||
|
{
|
||
|
*(.eh_frame)
|
||
|
}
|
||
|
.got :
|
||
|
{
|
||
|
*(.got)
|
||
|
}
|
||
|
.got.plt :
|
||
|
{
|
||
|
*(.got.plt)
|
||
|
}
|
||
|
.iplt :
|
||
|
{}
|
||
|
.rela.dyn :
|
||
|
{}
|
||
|
.igot.plt :
|
||
|
{}
|
||
|
.kend :
|
||
|
{
|
||
|
*(.kend)
|
||
|
}
|
||
|
}
|