]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - kernel/linker.ld
kernel: Don't put entry.o at beginning of binary
[nameless-os.git] / kernel / linker.ld
index 82f6e4af44dc08723874e8fbe5e6983ec161c6a4..98ee468fac7eb46536fb0fe07e18480995a8c435 100644 (file)
@@ -1,14 +1,12 @@
 ENTRY(_start)
-OUTPUT_FORMAT(binary)
 
 SECTIONS
 {
-       . = 0x100000;
+       . = 0xc0000000;
        __KERNEL_BASE__ = .;
 
        .text : ALIGN(4K) {
                __TEXT_BASE__ = .;
-               kernel/entry.o (.text)
                *(.text)
                __TEXT_END__ = .;
        }