We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef2109 commit 3de1a39Copy full SHA for 3de1a39
1 file changed
bios/second_stage/second-stage-link.ld
@@ -6,11 +6,17 @@ SECTIONS {
6
.start : {
7
*(.start)
8
}
9
- .rodata : {
+ .text : ALIGN(512) {
10
+ *(.text .text.*)
11
+ }
12
+ .rodata : ALIGN(512) {
13
*(.rodata .rodata.*)
14
- .text : {
- *(.text .text.*)
15
+ .bss : ALIGN(512) {
16
+ *(.bss .bss.*)
17
18
+ .data : ALIGN(512) {
19
+ *(.data .data.*)
20
21
22
. = ALIGN(512);
0 commit comments