updated ARM installer

This commit is contained in:
Ben 2026-03-12 16:11:16 -04:00 committed by GitHub
parent 1119704b72
commit f82c355ecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ LOCAL_IP=$(ip a | grep inet | grep "eth0\|en" | awk '{print $2}' | tr '/' ' ' |
ARC=$(lscpu | grep Arch | awk '{print $2}')
X64=https://ftdichip.com/wp-content/uploads/2022/07/libftd2xx-x86_64-1.4.27.tgz
X32=https://ftdichip.com/wp-content/uploads/2022/07/libftd2xx-x86_32-1.4.27.tgz
ARM=https://ftdichip.com/wp-content/uploads/2022/07/libftd2xx-arm-v7-hf-1.4.27.tgz
ARM=https://ftdichip.com/wp-content/uploads/2025/11/libftd2xx-linux-arm-v7-hf-1.4.34.tgz
AMBINSTDIR=/root/reflector-install-files/ambed
DEP="wget git build-essential"
GITREPO=https://github.com/LX3JL/xlxd.git
@ -57,11 +57,11 @@ then
elif [[ "$ARC" = "armv71" || "$ARC" = "aarch64" ]];
then
wget $ARM
tar xfvz libftd2xx-arm-v7-hf-1.4.27.tgz
cd release/build
tar xfvz libftd2xx-linux-arm-v7-hf-1.4.34.tgz
cd linux-arm-v7-hf
cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.27
ln -sf /usr/local/lib/libftd2xx.so.1.4.27 /usr/local/lib/libftd2xx.so
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.34
ln -sf /usr/local/lib/libftd2xx.so.1.4.34 /usr/local/lib/libftd2xx.so
elif [ "$ARC" = "i686" ];
then
wget $X32