Add armv7 support

This commit is contained in:
Josué Tille
2019-02-15 16:00:22 +01:00
parent 462418582e
commit fb15a9c489
2 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,8 @@ if [ -n "$(uname -m | grep 64)" ]; then
architecture="x86-64"
elif [ -n "$(uname -m | grep 86)" ]; then
architecture="i386"
elif [ -n "$(uname -m | grep armv7)" ]; then
architecture="armv7"
elif [ -n "$(uname -m | grep arm)" ]; then
architecture="arm"
else