This website works better with JavaScript.
Home
Help
Sign In
hms
/
pisdr-rpi-image
mirror of
https://github.com/luigifreitas/pisdr-image
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
14
Wiki
Activity
Browse Source
Forth batch of new applications for v6.0.
pull/64/head
luigifcruz
2 years ago
parent
8483f7dd59
commit
98c2d52c7d
7 changed files
with
68 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
stage4/07-pisdr-sdrplay/00-run.sh
+16
-0
stage4/41-pisdr-iiooscilloscope/00-packages-nr
+19
-0
stage4/41-pisdr-iiooscilloscope/00-run.sh
+13
-0
stage4/42-pisdr-qtdab/00-packages-nr
+19
-0
stage4/42-pisdr-qtdab/00-run.sh
+0
-0
stage4/43-pisdr-cleanup/00-run.sh
+0
-0
stage4/43-pisdr-cleanup/01-run.sh
+ 1
- 0
stage4/07-pisdr-sdrplay/00-run.sh
View File
@@ -16,4 +16,5 @@ sed -i 's/more sdrplay_license.txt//g' install_lib.sh
sed -i 's/armv7l/armv8l/g' install_lib.sh
printf "\ny\ny\ny\n" | ./install_lib.sh
systemctl enable sdrplay
ldconfig
EOF
+ 16
- 0
stage4/41-pisdr-iiooscilloscope/00-packages-nr
View File
@@ -0,0 +1,16 @@
libglib2.0-dev
libgtk2.0-dev
libgtkdatabox-dev
libmatio-dev
libfftw3-dev
libxml2
libxml2-dev
bison
flex
libavahi-common-dev
libavahi-client-dev
libcurl4-openssl-dev
libjansson-dev
cmake
libaio-dev
libserialport-dev
+ 19
- 0
stage4/41-pisdr-iiooscilloscope/00-run.sh
View File
@@ -0,0 +1,19 @@
#!/bin/bash -e
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
fi
cd iio-oscilloscope
mkdir -p build
cd build
cmake -GNinja ..
ninja install
ldconfig
cd ..
rm -fr build
EOF
+ 13
- 0
stage4/42-pisdr-qtdab/00-packages-nr
View File
@@ -0,0 +1,13 @@
qt5-qmake
libsndfile1-dev
qt5-default
libfftw3-dev
portaudio19-dev
libusb-1.0-0-dev
mesa-common-dev
libgl1-mesa-dev
libqt5opengl5-dev
libsamplerate0-dev
libqwt-qt5-dev
qtbase5-dev
libfaad-dev
+ 19
- 0
stage4/42-pisdr-qtdab/00-run.sh
View File
@@ -0,0 +1,19 @@
#!/bin/bash -e
on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
if [ ! -d "qt-dab" ]; then
git clone --single-branch --branch qt-dab-4.11 --depth 1 https://github.com/JvanKatwijk/qt-dab.git
fi
cd qt-dab/dab-maxi
mkdir -p build
cd build
cmake -GNinja ..
ninja install
ldconfig
cd ..
rm -fr build
EOF
stage4/41-pisdr-cleanup/00-run.sh → stage4/43-pisdr-cleanup/00-run.sh
View File
stage4/41-pisdr-cleanup/01-run.sh → stage4/43-pisdr-cleanup/01-run.sh
View File
Write
Preview
Loading…
Cancel
Save