mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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>
This commit is contained in:
parent
66463356ce
commit
5b218cd2b9
1 changed files with 3 additions and 0 deletions
|
|
@ -293,6 +293,9 @@ chk_sys_arch()
|
|||
ppc64le | powerpc64le)
|
||||
local arch=powerpc64le
|
||||
;;
|
||||
riscv64)
|
||||
local arch=riscv64
|
||||
;;
|
||||
*)
|
||||
die "Unsupported CPU type: ${arch}"
|
||||
esac
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue