Skip to content

Commit eb1091c

Browse files
Maurizio Brancamasci
Maurizio Branca
authored andcommitted
Fix architecture mapping for raspberrypi (#338)
The Raspberry Pi presents itself as an `armv7l` architecture and with this mapping the install script is will download the most appropriate archive for this platform.
1 parent d81cbbf commit eb1091c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ initArch() {
3535
case $ARCH in
3636
armv5*) ARCH="armv5";;
3737
armv6*) ARCH="armv6";;
38-
armv7*) ARCH="ARM";;
38+
armv7*) ARCH="ARMv7";;
3939
aarch64) ARCH="ARM64";;
4040
x86) ARCH="32bit";;
4141
x86_64) ARCH="64bit";;

0 commit comments

Comments
 (0)