Adjust arch detection

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König 2023-05-11 23:09:12 +02:00
parent 69e55ac143
commit 28e9be0e4c
No known key found for this signature in database
1 changed files with 1 additions and 5 deletions

View File

@ -13,14 +13,10 @@ detect_arch() {
DETECTED_ARCH=$(arch)
S6_ARCH=$DETECTED_ARCH
case $DETECTED_ARCH in
amd64)
S6_ARCH="x86_64";;
armel)
S6_ARCH="armhf";;
armhf)
armv7l)
S6_ARCH="armhf";;
arm64)
S6_ARCH="aarch64";;
i386)
S6_ARCH="i686";;
esac