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
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

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