Commit e8fcdaf8 authored by Anton Midyukov's avatar Anton Midyukov

lib/boot.mk: Set IMAGE_PACKTYPE to isodata for e2k

parent c52002e9
...@@ -6,7 +6,6 @@ ifeq (distro,$(IMAGE_CLASS)) ...@@ -6,7 +6,6 @@ ifeq (distro,$(IMAGE_CLASS))
# install media bootloader # install media bootloader
boot/iso: boot/iso:
@$(call try,IMAGE_PACKTYPE,boot)
ifeq (,$(filter-out i586 x86_64,$(ARCH))) ifeq (,$(filter-out i586 x86_64,$(ARCH)))
@$(call try,BOOTLOADER,isolinux) @$(call try,BOOTLOADER,isolinux)
endif endif
...@@ -15,9 +14,11 @@ ifeq (,$(filter-out aarch64 riscv64,$(ARCH))) ...@@ -15,9 +14,11 @@ ifeq (,$(filter-out aarch64 riscv64,$(ARCH)))
endif endif
ifeq (,$(filter-out e2k%,$(ARCH))) ifeq (,$(filter-out e2k%,$(ARCH)))
@$(call try,BOOTLOADER,e2kboot) @$(call try,BOOTLOADER,e2kboot)
@$(call set,IMAGE_PACKTYPE,isodata)
endif endif
ifeq (,$(filter-out ppc64le,$(ARCH))) ifeq (,$(filter-out ppc64le,$(ARCH)))
@$(call try,BOOTLOADER,ieee1275boot) @$(call try,BOOTLOADER,ieee1275boot)
endif endif
@$(call try,IMAGE_PACKTYPE,boot)
endif endif
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