Wasn't using this linker script anymore - using GNU-EFI's instead.

This commit is contained in:
Justin C. Miller
2017-01-03 08:09:11 -08:00
parent dba1ca186d
commit 2397618a68

View File

@@ -1,32 +0,0 @@
ENTRY(start)
SECTIONS
{
. = 0x100000;
.__mbHeader : {
mboot = .;
*(.__mbHeader)
. = ALIGN(4096);
}
.text : {
code = .;
*(.text)
. = ALIGN(4096);
}
.data : {
data = .;
*(.data)
*(.rodata)
. = ALIGN(4096);
}
.bss : {
bss = .;
*(.bss)
. = ALIGN(4096);
}
end = .;
}