diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-04 08:36:00 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-04 08:45:17 +0200 |
| commit | d335a696d5aaf8f40d2f30555a2e1fe97a8f9e5c (patch) | |
| tree | ddb41cadb3d66a87900c79a3cb2344892a10f905 /Boot/amd64-efi.make | |
| parent | 8a54e46bc4b070930e96d316ab062bb9a35879da (diff) | |
[IMP] [unstable] Bootloader now moves DDK and SCI into boot folder
(which is a FAT32 partition).
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Boot/amd64-efi.make')
| -rw-r--r-- | Boot/amd64-efi.make | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Boot/amd64-efi.make b/Boot/amd64-efi.make index 49d2ae59..b866e650 100644 --- a/Boot/amd64-efi.make +++ b/Boot/amd64-efi.make @@ -51,6 +51,8 @@ FLAG_GNU=-fshort-wchar -D__EFI_x86_64__ -D__NEWOS_OTA__ -mno-red-zone -D__KERNEL BOOT_LOADER=newosldr.exe KERNEL=newoskrnl.exe +DDK=libDDK.lib +SCI=libSCI.lib .PHONY: invalid-recipe invalid-recipe: @@ -63,6 +65,8 @@ all: compile-amd64 $(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) + $(COPY) ../SCIKit/$(SCI) Sources/Root/$(SCI) + $(COPY) ../DDKit/$(DDK) Sources/Root/$(DDK) $(COPY) Sources/$(BOOT_LOADER) Sources/Root/$(BOOT_LOADER) ifneq ($(DEBUG_SUPPORT), ) |
