photoprism/scripts/dist/arch.sh

52 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/bash
2022-02-18 17:40:58 +01:00
PATH="/usr/local/sbin/:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts"
2022-02-18 17:40:58 +01:00
# This script returns the normalized machine architecture (amd64, arm64, or arm).
# An error is returned if the architecture is currently not supported by PhotoPrism.
if [[ $PHOTOPRISM_ARCH ]]; then
SYSTEM_ARCH=$PHOTOPRISM_ARCH
2022-02-18 17:40:58 +01:00
elif [[ $OS == "Windows_NT" ]]; then
if [[ $PROCESSOR_ARCHITEW6432 == "AMD64" || $PROCESSOR_ARCHITECTURE == "AMD64" ]]; then
SYSTEM_ARCH=amd64
else
echo "Unsupported Windows Architecture" 1>&2
exit 1
fi
else
SYSTEM_ARCH=$(uname -m)
2022-02-18 17:40:58 +01:00
fi
BUILD_ARCH=${BUILD_ARCH:-$SYSTEM_ARCH}
# Value Normalized
# aarch64 arm64 # the latest v8 arm architecture. Used on Apple M1, AWS Graviton, and Raspberry Pi 3's and 4's
# armhf arm # 32-bit v7 architecture. Used in Raspberry Pi 3 and Pi 4 when 32bit Raspbian Linux is used
# armel arm/v6 # 32-bit v6 architecture. Used in Raspberry Pi 1, 2, and Zero
# i386 386 # older Intel 32-Bit architecture, originally used in the 386 processor
# x86_64 amd64 # all modern Intel-compatible x84 64-Bit architectures
# x86-64 amd64 # same
2022-02-18 17:40:58 +01:00
case $BUILD_ARCH in
amd64 | AMD64 | x86_64 | x86-64)
2022-02-18 17:40:58 +01:00
BUILD_ARCH=amd64
;;
arm64 | ARM64 | aarch64)
BUILD_ARCH=arm64
;;
arm | ARM | aarch | armv7l | armhf)
2022-02-18 17:40:58 +01:00
BUILD_ARCH=arm
;;
*)
echo "Unsupported Machine Architecture: \"$BUILD_ARCH\"" 1>&2
exit 1
;;
esac
export BUILD_ARCH=$BUILD_ARCH
echo $BUILD_ARCH