From ecc831a3411d9f54e3f8c2a46ec3dc7a9d64a012 Mon Sep 17 00:00:00 2001 From: IceCodeNew <32576256+IceCodeNew@users.noreply.github.com> Date: Wed, 25 Nov 2020 19:47:04 +0800 Subject: [PATCH] Fix #181 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决方案参考自: https://github.com/cyfdecyf/cow/pull/326 --- install-release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-release.sh b/install-release.sh index 1ec106b..54b1219 100644 --- a/install-release.sh +++ b/install-release.sh @@ -66,9 +66,11 @@ identify_the_operating_system_and_architecture() { ;; 'armv6l') MACHINE='arm32-v6' + grep Features /proc/cpuinfo | grep -qw 'vfp' || MACHINE='arm32-v5' ;; 'armv7' | 'armv7l') MACHINE='arm32-v7a' + grep Features /proc/cpuinfo | grep -qw 'vfp' || MACHINE='arm32-v5' ;; 'armv8' | 'aarch64') MACHINE='arm64-v8a'