guix-install.sh: Recognize armhf-linux.

* etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
master
Ludovic Courtès 2018-10-14 23:19:59 +02:00
parent e0caff9ed0
commit 2510bd8756
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 0 deletions

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