Commit 58eea191 authored by Anton Midyukov's avatar Anton Midyukov

boot.mk, efi, grub: Add support riscv64

For riscv64 available grub-efi. Needed added support for mkimage (mki-copy-efiboot-chrooted).
parent 724d904c
EFI_ARCHES := x86_64 aarch64
EFI_ARCHES := x86_64 aarch64 riscv64
+efi: use/efi/signed; @:
......
# default is plain text prompt
# NB: might be usbflash-ready hybrid iso
ifeq (,$(filter-out i586 x86_64 ppc64le aarch64,$(ARCH)))
ifeq (,$(filter-out i586 x86_64 ppc64le aarch64 riscv64,$(ARCH)))
use/grub: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
@$(call add_feature)
......
......@@ -10,7 +10,7 @@ boot/iso:
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
@$(call try,BOOTLOADER,isolinux)
endif
ifeq (,$(filter-out aarch64,$(ARCH)))
ifeq (,$(filter-out aarch64 riscv64,$(ARCH)))
@$(call try,BOOTLOADER,efiboot)
endif
ifeq (,$(filter-out e2k%,$(ARCH)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment