Skip to content
Snippets Groups Projects
Unverified Commit ea6b1bae authored by Efraim Flashner's avatar Efraim Flashner
Browse files

etc: guix-install.sh: Add aarch64-linux support.

* etc/guix-install.sh (chk_sys_arch): Add aarch64 case.
parent 659f790b
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# GNU Guix --- Functional package management for GNU # GNU Guix --- Functional package management for GNU
# Copyright © 2017 sharlatan <sharlatanus@gmail.com> # Copyright © 2017 sharlatan <sharlatanus@gmail.com>
# Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> # Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
# Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
# #
# This file is part of GNU Guix. # This file is part of GNU Guix.
# #
...@@ -153,6 +154,9 @@ chk_sys_arch() ...@@ -153,6 +154,9 @@ chk_sys_arch()
x86_64 | x86-64 | x64 | amd64) x86_64 | x86-64 | x64 | amd64)
local arch=x86_64 local arch=x86_64
;; ;;
aarch64)
local arch=aarch64
;;
*) *)
_err "${ERR}Unsupported CPU type: ${arch}" _err "${ERR}Unsupported CPU type: ${arch}"
exit 1 exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment