summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-06 02:51:58 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-06 02:51:58 +0200
commitef604f691e2e3a6f710c96d0270cd9e2a223f08d (patch)
treec0320f8384d2f6ff24c56fb26cfdfeff8dd01bd3 /Private/NewBoot/Source/makefile
parente47a33d7d4f70c54a27e96df437e6d9ac4e829cf (diff)
Kernel: Worked on driver support, add standard disk calls.
Bootloader: Fix formatting. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewBoot/Source/makefile')
-rw-r--r--Private/NewBoot/Source/makefile4
1 files changed, 4 insertions, 0 deletions
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: