[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: guix-install.sh: Recognize armhf-linux.
From: |
Ludovic Courtès |
Subject: |
02/03: guix-install.sh: Recognize armhf-linux. |
Date: |
Sun, 14 Oct 2018 17:49:11 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 2510bd87562bfee9d82348f1c08dd78ccea12dd1
Author: Ludovic Courtès <address@hidden>
Date: Sun Oct 14 23:19:59 2018 +0200
guix-install.sh: Recognize armhf-linux.
* etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
---
etc/guix-install.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index d9f1955..ca6874b 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -160,6 +160,9 @@ chk_sys_arch()
aarch64)
local arch=aarch64
;;
+ armv7l)
+ local arch=armhf
+ ;;
*)
_err "${ERR}Unsupported CPU type: ${arch}"
exit 1