解决方案参考自:
https://github.com/cyfdecyf/cow/pull/326
pull/182/head
IceCodeNew 2020-11-25 19:47:04 +08:00
parent d31559fcbb
commit ecc831a341
1 changed files with 2 additions and 0 deletions

View File

@ -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'