Browse Source

armv7l fix

Pi Zero 2 or some Pi 3 will have armv7l. They need armv7.
uname -m
armv7l

it printed a 404 error because thre is no armv7l file
pete1019 3 years ago
parent
commit
f493cd2c76
1 changed files with 3 additions and 0 deletions
  1. 3 0
      scripts/netclient-install.sh

+ 3 - 0
scripts/netclient-install.sh

@@ -78,6 +78,9 @@ case $(uname | tr '[:upper:]' '[:lower:]') in
 			aarch64)
                                 dist=netclient-arm64
 			;;
+			armv7l)
+                                dist=netclient-armv7
+			;;
 			arm*)
 				dist=netclient-$CPU_ARCH
             		;;