diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-19 20:11:47 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-19 20:11:47 +0200 |
| commit | 5c0e83ab99b02c65e48bea86b13c3035b0efcc48 (patch) | |
| tree | 29405d0c9b880600f2bea0873fd08f53583a5519 /Kernel | |
| parent | 37bbadbaa9397e0ebeb81247357bc70a2f64a648 (diff) | |
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 <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Kernel')
| -rw-r--r-- | Kernel/amd64-efi.make | 5 |
1 files changed, 3 insertions, 2 deletions
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 |
