]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - kernel/linker.ld
kernel: Remove LMAs from linker script
[nameless-os.git] / kernel / linker.ld
index 82f6e4af44dc08723874e8fbe5e6983ec161c6a4..73fd822e18f1981778f897955a3ff9f149b00504 100644 (file)
@@ -1,14 +1,13 @@
 ENTRY(_start)
-OUTPUT_FORMAT(binary)
 
 SECTIONS
 {
-       . = 0x100000;
+       . = 0xc0000000;
        __KERNEL_BASE__ = .;
 
        .text : ALIGN(4K) {
                __TEXT_BASE__ = .;
-               kernel/entry.o (.text)
+               entry.o (.text)
                *(.text)
                __TEXT_END__ = .;
        }