Skip to content
Snippets Groups Projects
Verified Commit 5e10feea authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix whitespace in linker file

parent 6c4c19a9
No related branches found
No related tags found
No related merge requests found
......@@ -12,21 +12,21 @@ SECTIONS {
.text : AT(ADDR(.text) - KERNEL_OFFSET) {
__text_start = .;
*(.text*)
. = ALIGN(4096);
. = ALIGN(4096);
__text_end = .;
}
.rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) {
.rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) {
__rodata_start = .;
*(.rodata*)
. = ALIGN(4096);
. = ALIGN(4096);
__rodata_end = .;
}
.data : AT(ADDR(.data) - KERNEL_OFFSET) {
__data_start = .;
*(.data*)
. = ALIGN(4096);
. = ALIGN(4096);
__data_end = .;
__bss_start = .;
*(.bss*)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment