X-Git-Url: http://git.dujemihanovic.xyz/projects?a=blobdiff_plain;f=kernel%2Flinker.ld;h=59d0381af92cf1bf95859357d31b9e2d63b6a11f;hb=1d0592f3c62d45b1fc23e807bf8cc2274496a4f5;hp=90292e6c2ce2d99b9d3bfb4af9cbb0de4c8ebd5c;hpb=5138270e466cf2dd21bf0aa6356672fdcc85fee6;p=nameless-os.git diff --git a/kernel/linker.ld b/kernel/linker.ld index 90292e6..59d0381 100644 --- a/kernel/linker.ld +++ b/kernel/linker.ld @@ -5,7 +5,7 @@ SECTIONS { . = 0x100000; - .text : { *(.text) } - .data : { *(.data) } - .bss : { *(.bss) } + .text : ALIGN(0x1000) { *(.text) } + .data : ALIGN(0x1000) { *(.data) } + .bss : ALIGN(0x1000) { *(.bss) } }