mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
guix-install.sh: Recognize armhf-linux.
* etc/guix-install.sh (chk_sys_arch): Add "armv7l" case.
This commit is contained in:
parent
e0caff9ed0
commit
2510bd8756
1 changed files with 3 additions and 0 deletions
|
@ -160,6 +160,9 @@ chk_sys_arch()
|
||||||
aarch64)
|
aarch64)
|
||||||
local arch=aarch64
|
local arch=aarch64
|
||||||
;;
|
;;
|
||||||
|
armv7l)
|
||||||
|
local arch=armhf
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
_err "${ERR}Unsupported CPU type: ${arch}"
|
_err "${ERR}Unsupported CPU type: ${arch}"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue