This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
kernel-dev-old/src/metaverse.lds

108 lines
1.3 KiB
Plaintext
Raw Normal View History

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)
}
. = 16M;
.text :
{
*(.text)
}
.data :
{
*(.data)
}
.rodata :
{
*(.rodata)
}
.bss :
{
*(.bss)
}
2024-01-16 23:58:11 +08:00
.comment :
{
*(.comment)
}
.eh_frame :
{
*(.eh_frame)
}
.got :
{
*(.got)
}
.got.plt :
{
*(.got.plt)
}
.iplt :
{}
.rela.dyn :
{}
.igot.plt :
{}
.tbss :
{
*(.tbss)
}
.tdata :
{
*(.tdata)
}
.debug_line :
{
*(.debug_line)
}
.debug_abbrev :
{
*(.debug_abbrev)
}
.debug_info :
{
*(.debug_info)
}
.debug_str :
{
*(.debug_str)
}
.debug_aranges :
{
*(.debug_aranges)
}
.debug_ranges :
{
*(.debug_ranges)
}
.debug_pubnames :
{
*(.debug_pubnames)
}
.debug_pubtypes :
{
*(.debug_pubtypes)
}
.debug_frame :
{
*(.debug_frame)
}
.kend :
{
*(.kend)
}
}