mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
Wasn't using this linker script anymore - using GNU-EFI's instead.
This commit is contained in:
@@ -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 = .;
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user