7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-03 05:16:33 +00:00

Changed scripts to pull repo if already cloned

This commit is contained in:
Aleksa Bjelogrlic 2024-10-30 11:20:46 -04:00
parent a653aa277b
commit e8e8c10208
4 changed files with 40 additions and 11 deletions

View File

@ -1,5 +1,9 @@
git clone https://github.com/EEVengers/libtslitex.git
cd libtslitex
if cd libtslitex; then
git pull
else
git clone https://github.com/EEVengers/libtslitex.git
cd libtslitex
fi
mkdir build
cd build
cmake ..

View File

@ -3,16 +3,29 @@ sudo apt install build-essential git cmake pkgconf libgtkmm-3.0-dev libcairomm-1
sudo apt-get install libvulkan-dev glslang-dev glslang-tools spirv-tools glslc
#On Ubuntu 22.10 and earlier, you will need to use the Vulkan SDK.
#TODO: check to see if above line worked, else install SDK
git clone https://github.com/anthonix/ffts.git
cd ffts
if cd ffts; then
git pull
else
git clone https://github.com/anthonix/ffts.git
cd ffts
fi
mkdir build
cd build
cmake .. -DENABLE_SHARED=ON
make -j4
sudo make install
cd ../..
git clone --recursive https://github.com/ngscopeclient/scopehal-apps.git
cd scopehal-apps
if cd scopehal-apps; then
git pull
git submodule update --recursive
else
git clone --recursive https://github.com/ngscopeclient/scopehal-apps.git
cd scopehal-apps
fi
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release

View File

@ -1,6 +1,13 @@
sudo apt-get install -y dotnet-sdk-8.0
git clone https://github.com/EEVengers/TS.NET.git
cd TS.NET/build-scripts/
if cd TS.NET; then
git pull
else
git clone https://github.com/EEVengers/TS.NET.git
cd TS.NET
fi
cd build-scripts/
./TS.NET.Engine\ \(linux-x64\).bash
cd ../..
cp libtslitex/build/artifacts/libtslitex/libtslitex.so TS.NET/builds/linux-x64/TS.NET.Engine/0.1.0/libtslitex.so

View File

@ -1,6 +1,11 @@
git clone -b dev https://github.com/EEVengers/ts_litex_driver_linux.git
cd ts_litex_driver_linux/kernel
if cd ts_litex_driver_linux; then
git pull
else
git clone -b dev https://github.com/EEVengers/ts_litex_driver_linux.git
cd ts_litex_driver_linux
fi
cd kernel
make
sudo ./init.sh
# Hacky, will remove when I sort out udev rules
sudo chmod 777 /dev/litepcie0
sudo chmod 777 /dev/thunderscope*