summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-01-19 12:44:57 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-01-19 12:45:09 +0100
commit9d6babb9a3b9ffbedc1fa377f47ff6b3f7585056 (patch)
tree8d24c521d8986a8a2ed0273763bfe309dd05b524 /makefile
parent149ad21b7188d21d726215c98d0d74835ea4e737 (diff)
Kernel/PowerPC: did some progress on it, got it booting on ofw.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index 96badf62..d267a474 100644
--- a/makefile
+++ b/makefile
@@ -5,16 +5,16 @@ ASM = nasm
ASMFLAGS = -f elf64
# This file is the kernel, responsible of task management, memory, drivers and more.
-KERNEL = hKernel.bin
+KERNEL = hKernel.elf
# The kernel entrypoint
ENTRY = __KernelMain
# Where the text segment is.
-TEXT = 0x8000000
+TEXT = 0x400000
# we want a flat binary
-FMT = binary
+FMT = elf64
.PHONY: kernel-build
kernel-build: