Prematurely jumping into kernel_main

This commit is contained in:
Justin C. Miller
2018-03-19 17:04:35 -07:00
parent e4bd24bfe3
commit 47ebdc7f41
4 changed files with 19 additions and 12 deletions

View File

@@ -5,22 +5,24 @@ SECTIONS
.text : {
code = .;
*(.text.entry)
*(.text)
. = ALIGN(4096);
}
.data : {
.data ALIGN(0x1000) : {
data = .;
*(.data)
*(.rodata)
. = ALIGN(4096);
}
.bss : {
.bss ALIGN(0x1000) : {
bss = .;
*(.bss)
. = ALIGN(4096);
}
end = .;
.note ALIGN(0x1000) : {
*(.note.*)
}
end = ALIGN(4096);
}