From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Gleb Fotengauer-Malinovskiy To: devel-distro@lists.altlinux.org Date: Fri, 4 Aug 2023 20:42:57 +0000 Message-Id: <20230804204257.3619236-1-glebfm@altlinux.org> X-Mailer: git-send-email 2.33.8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [devel-distro] [PATCH] lib/boot.mk: do not define BOOTLOADER type for e2k X-BeenThere: devel-distro@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Distributions development List-Id: Distributions development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Aug 2023 20:43:19 -0000 Archived-At: List-Archive: It is unnecessary to define the BOOTLOADER type for e2k in this context. The reason is that images for e2k use the mkimage isodata pack method, which is unaffected by any value of the BOOTLOADER variable (BOOT_TYPE in the mkimage). Therefore, defining the BOOTLOADER type does not make any sense. Fixes: e8fcdaf8 ("lib/boot.mk: Set IMAGE_PACKTYPE to isodata for e2k") --- lib/boot.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/boot.mk b/lib/boot.mk index 2c58f378..e8940dc7 100644 --- a/lib/boot.mk +++ b/lib/boot.mk @@ -13,7 +13,6 @@ ifeq (,$(filter-out aarch64 riscv64 loongarch64,$(ARCH))) @$(call try,BOOTLOADER,efiboot) endif ifeq (,$(filter-out e2k%,$(ARCH))) - @$(call try,BOOTLOADER,e2kboot) @$(call set,IMAGE_PACKTYPE,isodata) endif ifeq (,$(filter-out ppc64le,$(ARCH))) -- glebfm