moved everything to chookspace
This commit is contained in:
23
kernel/kernel.ld
Normal file
23
kernel/kernel.ld
Normal file
@@ -0,0 +1,23 @@
|
||||
OUTPUT_FORMAT(elf64-x86-64)
|
||||
ENTRY(_start)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : ALIGN(0x1000)
|
||||
{
|
||||
*(.text)
|
||||
}
|
||||
.data : ALIGN(0x1000)
|
||||
{
|
||||
*(.data)
|
||||
}
|
||||
.rodata : ALIGN(0x1000)
|
||||
{
|
||||
*(.rodata)
|
||||
}
|
||||
.bss : ALIGN(0x1000)
|
||||
{
|
||||
*(COMMON)
|
||||
*(.bss)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user