X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/2a49908006b177c4d6354309333d06b1b96e4887..9eed27f6f2f002145667fb4abfc5e476b53630e5:/lunaix-os/usr/link-usr.ld diff --git a/lunaix-os/usr/link-usr.ld b/lunaix-os/usr/link-usr.ld index c069939..ab77bb4 100644 --- a/lunaix-os/usr/link-usr.ld +++ b/lunaix-os/usr/link-usr.ld @@ -2,4 +2,20 @@ ENTRY(_start) SECTIONS { . = 0x400000; -} \ No newline at end of file + + .text BLOCK(4K) : { + *(.text) + } + + .data BLOCK(4K) : { + *(.data) + } + + .ro.data BLOCK(4K) : { + *(.ro.data) + } + + .bss BLOCK(4K) : { + *(.bss) + } +}