Skip to content

Commit

Permalink
Added aarch64 architecture (#514)
Browse files Browse the repository at this point in the history
For some devices (like PinePhone), OS_ARCH is aarch64, which is the same as arm64.
  • Loading branch information
impFred authored Apr 23, 2022
1 parent 41ccebe commit c03518e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ case "$OSARCH" in
armv6l) INSTALL_ARCH="arm" ;;
armv7l) INSTALL_ARCH="arm" ;;
arm*) INSTALL_ARCH="arm64" ;;
aarch64*) INSTALL_ARCH="arm64" ;;
*) echo "unknown: $OSARCH"; exit 1 ;;
esac

Expand Down

0 comments on commit c03518e

Please sign in to comment.