summaryrefslogtreecommitdiffstats
path: root/bootloader/Makefile
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2017-12-23 17:58:30 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2017-12-23 18:03:44 +0000
commitcfe9a87896dae66631e3e877088333fc2eaa6849 (patch)
tree4fb862d2e21fc3cca380cc51ff51805d060c8635 /bootloader/Makefile
parentf1282484312c10962b998a4da633f249ee303d55 (diff)
downloaddrakiso-cfe9a87896dae66631e3e877088333fc2eaa6849.tar
drakiso-cfe9a87896dae66631e3e877088333fc2eaa6849.tar.gz
drakiso-cfe9a87896dae66631e3e877088333fc2eaa6849.tar.bz2
drakiso-cfe9a87896dae66631e3e877088333fc2eaa6849.tar.xz
drakiso-cfe9a87896dae66631e3e877088333fc2eaa6849.zip
Correct name for grub2 UEFI boot image.
Diffstat (limited to 'bootloader/Makefile')
-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)