Skip to content

Commit

Permalink
Disable iio-osc and urh.
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifcruz committed Aug 27, 2023
1 parent 9446958 commit 5409629
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions stage4/35-pisdr-urh/00-run.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#!/bin/bash -e

# currently not compiling with latest AirSpy drivers
exit

on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
if [ ! -d "urh" ]; then
git clone --depth 1 https://github.com/jopohl/urh.git
git clone --depth 1 --branch v2.9.4 https://github.com/jopohl/urh.git
fi
cd urh
python3 -m pip install --upgrade cython
python3 -m pip install cython==3.0.0
python3 setup.py install
EOF
5 changes: 4 additions & 1 deletion stage4/41-pisdr-iiooscilloscope/00-run.sh
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#!/bin/bash -e

# currently not compiling with latest Gtk
exit

on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
if [ ! -d "iio-oscilloscope" ]; then
git clone --depth 1 https://github.com/analogdevicesinc/iio-oscilloscope.git
git clone --depth 1 --branch v0.16-master https://github.com/analogdevicesinc/iio-oscilloscope.git
fi
cd iio-oscilloscope
Expand Down

0 comments on commit 5409629

Please sign in to comment.