summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schitter <ms+git@mur.at>2025-09-16 03:45:13 +0000
committerLudovic Courtès <ludo@gnu.org>2025-09-23 11:13:22 +0200
commit5b218cd2b9eccad6493f67b4c8b0b25dee148486 (patch)
treedc015ccc303292133070e5019874ed5149467bbb
parent66463356ce5868d3551ea7014acb34543972a5d8 (diff)
etc: guix-install.sh: Accept riscv64 as supported architecture.
Although the installer script will not find any officially released binary-tar-packages for riscv64 on the guix ftp mirrors until now we should at least support the installation of custom packed binary bundles for this platform. Changes to be committed: modified: etc/guix-install.sh Change-Id: I84c82388c7771d793b108b99e03d040bad9f1154 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rwxr-xr-xetc/guix-install.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index aae1f098c38..3215c4cfea9 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -293,6 +293,9 @@ chk_sys_arch()
ppc64le | powerpc64le)
local arch=powerpc64le
;;
+ riscv64)
+ local arch=riscv64
+ ;;
*)
die "Unsupported CPU type: ${arch}"
esac