Compare commits

...

2 Commits

Author SHA1 Message Date
M0VUB 25382b7f72
Update ambe-debian-installer
Update FTDI drivers
2022-10-07 01:55:57 +01:00
M0VUB ff96f47590
Update README.md 2022-10-07 01:37:17 +01:00
2 changed files with 17 additions and 17 deletions

View File

@ -26,7 +26,7 @@ cd ambed-debian-installer
### Edit AMBEd system unit for LocalHost
5. If you are running this transcoder on the same LocalHost as XLXd then there is no need to edit. If running AMBED on a remote site then you will need to include
your local IP address in the system unit file. Change the default 127.0.0.1 to your LOCAL IP etc 192.168.1........ otherwise trancoding will not work.
your local IP address in the system unit file. If running on local machine with XLXd then use 127.0.0.1 or the trascoding will not work!
```sh
nano /etc/systemd/system/ambed.service
```

View File

@ -27,10 +27,10 @@ fi
DIRDIR=$(pwd)
LOCAL_IP=$(ip a | grep inet | grep "eth0\|en" | awk '{print $2}' | tr '/' ' ' | awk '{print $1}')
ARC=$(lscpu | grep Arch | awk '{print $2}')
X64=https://ftdichip.com/wp-content/uploads/2021/09/libftd2xx-x86_64-1.4.24.tgz
X32=https://www.ftdichip.com/Drivers/D2XX/Linux/libftd2xx-i386-1.4.22.tgz
ARMv7=https://ftdichip.com/wp-content/uploads/2021/09/libftd2xx-arm-v7-hf-1.4.24.tgz
ARMv8=https://ftdichip.com/wp-content/uploads/2021/09/libftd2xx-arm-v8-1.4.24.tgz
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
ARMv7=https://ftdichip.com/wp-content/uploads/2022/07/libftd2xx-arm-v7-hf-1.4.27.tgz
ARMv8=https://ftdichip.com/wp-content/uploads/2022/07/libftd2xx-arm-v8-1.4.27.tgz
AMBINSTDIR=/root/reflector-install-files/ambed
DEP="wget git build-essential g++ figlet nano"
GITREPO=https://github.com/LX3JL/xlxd.git
@ -50,35 +50,35 @@ then
if [ "$ARC" = "x86_64" ];
then
wget $X64
tar xfvz libftd2xx-x86_64-1.4.24.tgz
tar -xvf lib*
cd release/build
cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.24
ln -sf /usr/local/lib/libftd2xx.so.1.4.24 /usr/local/lib/libftd2xx.so
cp lib* /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
elif [ "$ARC" = "armv7l" ];
then
wget $ARMv7
tar zxf libftd2xx-arm-v7-hf-1.4.24.tgz
tar zxf libftd2xx-arm-v7-hf-1.4.27.tgz
cd release/build
cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.24
ln -sf /usr/local/lib/libftd2xx.so.1.4.24 /usr/local/lib/libftd2xx.so
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
elif [ "$ARC" = "aarch64" ];
then
wget $ARMv8
tar zxf libftd2xx-arm-v8-1.4.24.tgz
tar zxf libftd2xx-arm-v8-1.4.27.tgz
cd release/build
cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.24
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.27
ln -sf /usr/local/lib/libftd2xx.so.1.4.24 /usr/local/lib/libftd2xx.so
elif [ "$ARC" = "i686" ];
then
wget $X32
tar xfvz libftd2xx-i386-1.4.22.tgz
tar xfvz libftd2xx-i386-1.4.27.tgz
cd release/build
cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.22
ln -sf /usr/local/lib/libftd2xx.so.1.4.22 /usr/local/lib/libftd2xx.so
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
fi
else
echo "------------------------------------------------------------------------------"