summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bootloader/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/Makefile b/bootloader/Makefile
index e72fe74..0b09a06 100644
--- a/bootloader/Makefile
+++ b/bootloader/Makefile
@@ -9,7 +9,7 @@ GRUB2_MODULES = iso9660 fat part_msdos all_video font png gfxterm gfxmenu \
GRUB_IMAGES = images/boot_hybrid.img images/eltorito.img
ifeq ($(ARCH),x86_64)
- GRUB_IMAGES += images/boot_x64.img
+ GRUB_IMAGES += images/bootx64.efi
endif
INSTALL_DIR = $(PREFIX)/usr/share/drakiso-bootloader
@@ -26,7 +26,7 @@ images/eltorito.img:
@mkdir -p images
grub2-mkimage --output $@ --prefix /boot/grub2 --format i386-pc-eltorito biosdisk $(GRUB2_MODULES)
-images/boot_x64.img:
+images/bootx64.efi:
@mkdir -p images
grub2-mkimage --output $@ --prefix /EFI/BOOT --format x86_64-efi $(GRUB2_MODULES)