diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | bootloader/Makefile | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,4 @@ +- bootloader: in grub 2.04 linux16/linuxefi are included in linux module - update examples to default to Mageia 8 - update examples to support encrypted persistent partition diff --git a/bootloader/Makefile b/bootloader/Makefile index 7ec8ac8..b0693dd 100644 --- a/bootloader/Makefile +++ b/bootloader/Makefile @@ -28,15 +28,15 @@ images/boot_hybrid.img: /usr/lib/grub/i386-pc/boot_hybrid.img images/eltorito.img: @mkdir -p images - grub2-mkimage --output $@ --prefix /boot/grub2 --format i386-pc-eltorito biosdisk $(GRUB2_MODULES) linux16 + grub2-mkimage --output $@ --prefix /boot/grub2 --format i386-pc-eltorito biosdisk $(GRUB2_MODULES) images/bootia32.efi: @mkdir -p images - grub2-mkimage --output $@ --prefix /EFI/BOOT --format i386-efi $(GRUB2_MODULES) linuxefi + grub2-mkimage --output $@ --prefix /EFI/BOOT --format i386-efi $(GRUB2_MODULES) images/bootx64.efi: @mkdir -p images - grub2-mkimage --output $@ --prefix /EFI/BOOT --format x86_64-efi $(GRUB2_MODULES) linuxefi + grub2-mkimage --output $@ --prefix /EFI/BOOT --format x86_64-efi $(GRUB2_MODULES) kbd-names%txt lang-kbds%txt: ./make-kbd-info |