Re-integrate framebuffer console

This commit is contained in:
Justin C. Miller
2018-05-03 22:01:33 -07:00
parent a6b915f6b4
commit 33012f35ef
10 changed files with 141 additions and 173 deletions

View File

@@ -5,24 +5,24 @@ SECTIONS
. = OFFSET + 0x100000;
.header : {
header = .;
__header_start = .;
KEEP(*(.header))
__header_end = .;
}
.text : {
code = .;
*(.text)
}
.data ALIGN(0x1000) : {
data = .;
*(.data)
*(.rodata)
}
.bss ALIGN(0x1000) : {
bss = .;
__bss_start = .;
*(.bss)
__bss_end = .;
}
.note ALIGN(0x1000) : {