From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4h4LyX2R4Pz332R for ; Tue, 21 Jul 2026 15:33:56 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "YR2" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4h4LyX26bRz2yZl for ; Tue, 21 Jul 2026 15:33:56 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bit raw public key) server-digest SHA256 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "YE2" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4h4LyW2yHVz4NK for ; Tue, 21 Jul 2026 15:33:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1784648035; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=R68JEcw0RAJ2o1hCAzDSUdMI0bRyAM3NFRjl8VtwQrA=; b=8qYJaAkMqAfYFrqx1ZgP60TxjKTL0A2bmhPOSZoLglTzGoin0kAOSLXg5xEWVPJuJlatvB AtdY/smAITyju9Cg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1784648035; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=R68JEcw0RAJ2o1hCAzDSUdMI0bRyAM3NFRjl8VtwQrA=; b=GuJuFvqH2+J9SdoNmZaeR61yYbW4jm+74Pg9Xt8ThfnYT3LhYOBMBPuVHY6IiSMsd35Hjc Gs0F94DchkntUNPubxLkfzHAdlKxiGKPtumOhYSWg4UKlYZyJ8pVfDvth/Y2haZdlqInRr EsJ7sdkVoj6IlC55QPGE2OxQjQ1LskfVVRD4EfGYRmb5BZQpOQET27qHPlNWRGlmYFGVxU J6XVIBDLm+r0yV6AUDFp4iYav8SWv1d+hKI9zMF4Rtt2sVGIYOCQ2rP1fIdyXePAnJnXHu dp8rf9h6SBAl60u45gyYg9KrF5rHjnVqMixXjDS0JOWoplesBZJgA1qAvoHAyg== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4h4LyW12Cmz2xJB; Tue, 21 Jul 2026 15:33:55 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. bba1a0a8b1141675ae463e8138b256a1f635c2ce X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: 39819e77afe5232cb80d1e9b2f12bcc197261b5f X-Git-Newrev: bba1a0a8b1141675ae463e8138b256a1f635c2ce Message-Id: <4h4LyW12Cmz2xJB@people01.haj.ipfire.org> Date: Tue, 21 Jul 2026 15:33:55 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via bba1a0a8b1141675ae463e8138b256a1f635c2ce (commit) via c29dc753690e347ada6016fef2c82390700b408d (commit) from 39819e77afe5232cb80d1e9b2f12bcc197261b5f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bba1a0a8b1141675ae463e8138b256a1f635c2ce Author: Michael Tremer Date: Tue Jul 21 15:10:29 2026 +0000 installer: Fail if the install-bootloader script does not support the arch Signed-off-by: Michael Tremer commit c29dc753690e347ada6016fef2c82390700b408d Author: Michael Tremer Date: Tue Jul 21 15:10:18 2026 +0000 installer: Install GRUB EFI on riscv64 Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: src/installer/install-bootloader | 9 +++++++++ 1 file changed, 9 insertions(+) Difference in files: diff --git a/src/installer/install-bootloader b/src/installer/install-bootloader index 340dd6aa5..977ed3674 100644 --- a/src/installer/install-bootloader +++ b/src/installer/install-bootloader @@ -104,9 +104,18 @@ function grub_install() { aarch64) arches="arm64-efi" ;; + riscv64) + arches="riscv64-efi" + ;; x86_64) arches="i386-pc x86_64-efi" ;; + + # Fail if the architecture is not supported + *) + echo "Unsupported architecture: $(uname -m)" >&2 + return 1 + ;; esac local arch hooks/post-receive -- IPFire 2.x development tree