diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-07 09:39:07 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-07 09:39:07 +0200 |
| commit | eb076dbf3754f44efdda926e1cc55a5c86136f5c (patch) | |
| tree | 6391d97d885dcf6d85f8824aec29c60c4dea2d78 /Boot/amd64-efi.make | |
| parent | e477d85ffea45a92aea7a2942bdfb9240fed80bc (diff) | |
MHR-36: IMP: Add ProgramLoader class, *_cast macros and patching capability.
FIX: Device constructor marked as explicit.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Boot/amd64-efi.make')
| -rw-r--r-- | Boot/amd64-efi.make | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Boot/amd64-efi.make b/Boot/amd64-efi.make index 2bbe2a2c..16cb936e 100644 --- a/Boot/amd64-efi.make +++ b/Boot/amd64-efi.make @@ -32,7 +32,7 @@ EMU_FLAGS=-net none -m 4G -M q35 -d int \ -bios $(BIOS) -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:Sources/Root,index=2,format=raw -d int -hdd $(IMG_2) + file=fat:rw:Sources/Root/,index=2,format=raw -d int -hdd $(IMG_2) LD_FLAGS=-e Main --subsystem=10 @@ -65,7 +65,6 @@ all: compile-amd64 $(LD_GNU) $(OBJ) $(LD_FLAGS) -o Sources/$(BOOT_LOADER) $(COPY) Sources/$(BOOT_LOADER) Sources/Root/EFI/BOOT/BOOTX64.EFI $(COPY) Sources/$(BOOT_LOADER) Sources/Root/EFI/BOOT/NEWBOOT.EFI - $(COPY) ../Kernel/$(KERNEL) Sources/Root/$(KERNEL) ifneq ($(DEBUG_SUPPORT), ) DEBUG = -D__DEBUG__ @@ -76,7 +75,7 @@ compile-amd64: $(RESCMD) $(CC_GNU) $(NEWOS_MODEL) $(STANDALONE_MACRO) $(FLAG_GNU) $(DEBUG) \ $(wildcard Sources/HEL/AMD64/*.cxx) \ - $(wildcard Sources/HEL/AMD64/*.S) + $(wildcard Sources/HEL/AMD64/*.S) \ $(wildcard Sources/*.cxx) .PHONY: run-efi-amd64 |
