added arm64-ancient build

Added arm64 build for ancient kernels, needed to support Android phones
whose kernels are too old to support kernels used by the current arm64
build.

Updated Android/git-annex-install to use it. (Also made it use i386-ancient
because that seems like a good idea.)

Sponsored-by: Noam Kremen on Patreon
This commit is contained in:
Joey Hess 2023-03-10 11:59:03 -04:00
parent 8c0051930e
commit d8feda7a2f
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
5 changed files with 22 additions and 9 deletions

View file

@ -13,7 +13,7 @@ set -e
case $(uname -m) in
aarch64)
arch=arm64
arch=arm64-ancient
;;
arm)
arch=armel
@ -22,10 +22,10 @@ case $(uname -m) in
arch=armel
;;
x86_64)
arch=amd64
arch=amd64-ancient
;;
x86_32)
arch=i386
arch=i386-ancient
;;
*)
echo "unknown architecture $(uname -m), cannot install" >&2