From e8fcdaf8e3c4f3e9e5b6da87124381fe307e64cc Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Thu, 15 Apr 2021 13:19:08 +0700 Subject: [PATCH] lib/boot.mk: Set IMAGE_PACKTYPE to isodata for e2k --- lib/boot.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/boot.mk b/lib/boot.mk index 3f003d86..ee3c869f 100644 --- a/lib/boot.mk +++ b/lib/boot.mk @@ -6,7 +6,6 @@ ifeq (distro,$(IMAGE_CLASS)) # install media bootloader boot/iso: - @$(call try,IMAGE_PACKTYPE,boot) ifeq (,$(filter-out i586 x86_64,$(ARCH))) @$(call try,BOOTLOADER,isolinux) endif @@ -15,9 +14,11 @@ ifeq (,$(filter-out aarch64 riscv64,$(ARCH))) endif ifeq (,$(filter-out e2k%,$(ARCH))) @$(call try,BOOTLOADER,e2kboot) + @$(call set,IMAGE_PACKTYPE,isodata) endif ifeq (,$(filter-out ppc64le,$(ARCH))) @$(call try,BOOTLOADER,ieee1275boot) endif + @$(call try,IMAGE_PACKTYPE,boot) endif