diff options
| author | Christian Cunningham <cc@localhost> | 2022-01-02 17:28:09 -0800 |
|---|---|---|
| committer | Christian Cunningham <cc@localhost> | 2022-01-02 17:28:09 -0800 |
| commit | 58b2bf3128192e3b937d934a81dcdfc7dc199900 (patch) | |
| tree | 327f8298060cd877706d3aa1a000f0230a43c975 /linker.ld | |
| parent | 1d05efd6126377049f153c443fb2ca3ba8a2bb95 (diff) | |
Moved Postinit Information
Diffstat (limited to 'linker.ld')
| -rw-r--r-- | linker.ld | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ SECTIONS .text : { KEEP(*(.text.boot)) - *(.text) + *(.text*) } . = ALIGN(4096); /* align to page size */ __text_end = .; @@ -17,7 +17,7 @@ SECTIONS __data_start = .; .data : { - *(.data) + *(.data*) } . = ALIGN(4096); /* align to page size */ __data_end = .; @@ -26,7 +26,7 @@ SECTIONS .bss : { bss = .; - *(.bss) + *(.bss*) } . = ALIGN(4096); /* align to page size */ __bss_end = .; |
