1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

guix-install.sh: Recognize armhf-linux.

* etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
This commit is contained in:
Ludovic Courtès
2018-10-14 23:19:59 +02:00
parent e0caff9ed0
commit 2510bd8756
+3
View File
@@ -160,6 +160,9 @@ chk_sys_arch()
aarch64)
local arch=aarch64
;;
armv7l)
local arch=armhf
;;
*)
_err "${ERR}Unsupported CPU type: ${arch}"
exit 1