diff options
author | Marvin Borner | 2020-11-17 22:38:16 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-17 22:38:16 +0100 |
commit | 5443567733f00e8217731c1241f565025e6f4c9e (patch) | |
tree | f10b5aafba21f02f6aa816a7a5419a2ed8161a4e /kernel/Makefile | |
parent | 72143cff9dbde52d6165742e43b1d20b13bb23e7 (diff) |
I think this fixes quite many bugs!
For real though! First tests show no weird bugs anymore.
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 1bc41c5..64b5993 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -36,4 +36,4 @@ all: compile compile: $(COBJS) @mkdir -p ../build/ @$(LD) -N -ekernel_main -Ttext 0x00050000 -o ../build/kernel.elf -L../build/ $+ -lk - @$(OC) -O binary ../build/kernel.elf ../build/kernel.bin + @$(LD) -N -Tlink.ld -o ../build/kernel.bin -L../build/ $+ -lk |