From 5c0e83ab99b02c65e48bea86b13c3035b0efcc48 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 19 Jun 2024 20:11:47 +0200 Subject: unstable: Dont bother with AMD64 support for now. Let's focus on ARM64 and RISC architectures for now. Switching to ARM64-zeta-support branch. Signed-off-by: Amlal El Mahrouss --- Kernel/amd64-efi.make | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Kernel') diff --git a/Kernel/amd64-efi.make b/Kernel/amd64-efi.make index f543c1e6..9421f63a 100644 --- a/Kernel/amd64-efi.make +++ b/Kernel/amd64-efi.make @@ -39,6 +39,7 @@ LDOBJ = Objects/*.obj # This file is the kernel, responsible of task management and memory. KERNEL = newoskrnl.exe +KERNEL_512K = newoskrnl.512k.exe .PHONY: error error: @@ -70,8 +71,8 @@ link-amd64-epm: .PHONY: all all: newos-amd64-epm link-amd64-epm - qemu-img create -f raw newoskrnl.512k.exe 512K - dd if=newoskrnl.exe of=newoskrnl.512k.exe bs=1 seek=0 conv=notrunc + qemu-img create -f raw $(KERNEL_512K) 512K + dd if=newoskrnl.exe of=$(KERNEL_512K) bs=1 seek=0 conv=notrunc @echo "NewOSKrnl => OK." .PHONY: help -- cgit v1.2.3