]> git.dujemihanovic.xyz Git - nameless-os.git/commitdiff
Align all sections in kernel binary to page size
authorDuje Mihanović <duje.mihanovic@skole.hr>
Fri, 6 May 2022 18:31:25 +0000 (20:31 +0200)
committerDuje Mihanović <duje.mihanovic@skole.hr>
Fri, 6 May 2022 18:31:25 +0000 (20:31 +0200)
kernel/linker.ld

index 90292e6c2ce2d99b9d3bfb4af9cbb0de4c8ebd5c..59d0381af92cf1bf95859357d31b9e2d63b6a11f 100644 (file)
@@ -5,7 +5,7 @@ SECTIONS
 {
        . = 0x100000;
 
-       .text : { *(.text) }
-       .data : { *(.data) }
-       .bss : { *(.bss) }
+       .text : ALIGN(0x1000) { *(.text) }
+       .data : ALIGN(0x1000) { *(.data) }
+       .bss : ALIGN(0x1000) { *(.bss) }
 }