From 91c88797f7fa9dbb6cce12c14928a6fbd97d51b6 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 25 Feb 2024 18:19:19 +0100 Subject: Kernel: Did progress on interrupts, moved kernel main to HAL, as the code here is very specific. Signed-off-by: Amlal El Mahrouss --- Private/NewBoot/Source/makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Private/NewBoot/Source') diff --git a/Private/NewBoot/Source/makefile b/Private/NewBoot/Source/makefile index 0e9cd4d2..30213e07 100644 --- a/Private/NewBoot/Source/makefile +++ b/Private/NewBoot/Source/makefile @@ -20,15 +20,19 @@ invalid-recipe: bootloader-amd64: $(CC_GNU) $(FLAG_GNU) HEL/AMD64/*.cxx *.cxx $(ASM) $(FLAG_ASM) HEl/AMD64/AMD64-VirtualMemory.asm - $(LD_GNU) $(OBJ) $(LD_FLAGS) -o HCoreKrnl.exe - cp HCoreKrnl.exe CDROM/EFI/BOOT/BOOTX64.EFI + $(LD_GNU) $(OBJ) $(LD_FLAGS) -o HCoreLdr.exe + cp HCoreLdr.exe CDROM/EFI/BOOT/BOOTX64.EFI + cp HCoreLdr.exe CDROM/EFI/BOOT/HCORELDR.EFI cp ../../HCoreKrnl.dll CDROM/HCOREKRNL.DLL .PHONY: run-efi-amd64 run-efi-amd64: - wget https://retrage.github.io/edk2-nightly/bin/DEBUGX64_OVMF.fd -O OVMF.fd qemu-system-x86_64 -net none -smp 2 -m 4G -M q35 -bios OVMF.fd -drive file=fat:rw:CDROM,index=1,format=raw -serial stdio +.PHONY: download-edk +download-edk: + wget https://retrage.github.io/edk2-nightly/bin/DEBUGX64_OVMF.fd -O OVMF.fd + .PHONY: clean clean: rm -f $(OBJ) HCoreLdr.exe OVMF.fd -- cgit v1.2.3