2015-10-10 12:59:23 +00:00
|
|
|
ENTRY(_start)
|
2015-10-13 14:11:06 +00:00
|
|
|
OUTPUT_FORMAT(elf32-i386)
|
2016-06-16 18:10:07 +00:00
|
|
|
OUTPUT_ARCH(i386:x86-64)
|
2015-10-10 12:59:23 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
2016-06-18 11:16:15 +00:00
|
|
|
. = 0x200000;
|
2016-02-06 18:57:44 +00:00
|
|
|
kernel_start = .;
|
2015-10-10 12:59:23 +00:00
|
|
|
.text : {
|
|
|
|
*(multiboot)
|
|
|
|
*(.text)
|
|
|
|
}
|
2016-06-17 19:39:43 +00:00
|
|
|
.data ALIGN(0x200000) : {
|
2015-10-14 18:02:41 +00:00
|
|
|
start_ctors = .;
|
|
|
|
KEEP(*( .init_array ));
|
|
|
|
KEEP(*(SORT_BY_INIT_PRIORITY( .init_array.* )));
|
2015-10-14 18:14:50 +00:00
|
|
|
*(.ctors)
|
2015-10-14 18:02:41 +00:00
|
|
|
end_ctors = .;
|
|
|
|
start_dtors = .;
|
|
|
|
*(.dtors)
|
|
|
|
end_dtors = .;
|
2015-10-10 12:59:23 +00:00
|
|
|
*(.data)
|
|
|
|
}
|
2016-06-17 19:39:43 +00:00
|
|
|
.rodata ALIGN(0x200000) : {
|
2015-10-10 12:59:23 +00:00
|
|
|
*(.rodata)
|
|
|
|
}
|
2016-06-17 19:39:43 +00:00
|
|
|
.bss ALIGN(0x200000) : {
|
2015-10-10 12:59:23 +00:00
|
|
|
*(.bss)
|
|
|
|
}
|
2016-06-17 19:39:43 +00:00
|
|
|
. = ALIGN(0x200000);
|
2016-02-06 18:57:44 +00:00
|
|
|
kernel_end = .;
|
2015-10-10 12:59:23 +00:00
|
|
|
}
|