From ef604f691e2e3a6f710c96d0270cd9e2a223f08d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 6 Apr 2024 02:51:58 +0200 Subject: Kernel: Worked on driver support, add standard disk calls. Bootloader: Fix formatting. Signed-off-by: Amlal El Mahrouss --- Private/NewBoot/Source/makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Private/NewBoot/Source/makefile') diff --git a/Private/NewBoot/Source/makefile b/Private/NewBoot/Source/makefile index 7fc566b6..595010d3 100644 --- a/Private/NewBoot/Source/makefile +++ b/Private/NewBoot/Source/makefile @@ -17,11 +17,14 @@ EMU=qemu-system-x86_64w.exe endif IMG=epm.img +IMG_2=epm-slave.img EMU_FLAGS=-net none -smp 4 -m 4G -M q35 -bios OVMF.fd -device piix3-ide,id=ide -drive id=disk,file=$(IMG),format=raw,if=none -device ide-hd,drive=disk,bus=ide.0 -drive file=fat:rw:CDROM,index=2,format=raw -d int LD_FLAGS=-e efi_main --subsystem=10 + OBJ=$(wildcard *.o) $(wildcard HEL/AMD64/*.obj) + REM=rm REM_FLAG=-f @@ -55,6 +58,7 @@ run-efi-amd64: .PHONY: epm-img epm-img: qemu-img create -f raw $(IMG) 256M + qemu-img create -f raw $(IMG_2) 256M .PHONY: download-edk download-edk: -- cgit v1.2.3