]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - kernel/linker.ld
Complete build system rehaul
[nameless-os.git] / kernel / linker.ld
index a7300751065656c085993d56b48971614c8637fc..40870daa95a4735bf524150ef7df90ce41250bf0 100644 (file)
@@ -1,5 +1,4 @@
 ENTRY(_start)
-OUTPUT_FORMAT(binary)
 
 SECTIONS
 {
@@ -8,7 +7,7 @@ SECTIONS
 
        .text : AT(ADDR(.text) - 0xbff00000) ALIGN(4K) {
                __TEXT_BASE__ = .;
-               kernel/entry.o (.text)
+               entry.o (.text)
                *(.text)
                __TEXT_END__ = .;
        }