Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
ENTRY(_start)
SECTIONS
{
. = 0x100000;
.text : AT(ADDR(.text)) {
*(multiboot)
*(.text)
}
.data ALIGN(4096) : AT(ADDR(.data)) {
*(.data)
.rodata ALIGN(4096) : AT(ADDR(.rodata)) {
*(.rodata)
.bss ALIGN(4096) : {
*(.bss)