@@ -18,8 +18,8 @@ | |||||
# uncomment to force a console size. By default it will be display's size minus | # uncomment to force a console size. By default it will be display's size minus | ||||
# overscan. | # overscan. | ||||
#framebuffer_width=1280 | |||||
#framebuffer_height=720 | |||||
#framebuffer_width=1920 | |||||
#framebuffer_height=1080 | |||||
# uncomment if hdmi display is not detected and composite is being output | # uncomment if hdmi display is not detected and composite is being output | ||||
#hdmi_force_hotplug=1 | #hdmi_force_hotplug=1 | ||||
@@ -1,6 +1,5 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
## Turn on VNC | |||||
systemctl enable vncserver-x11-serviced.service | systemctl enable vncserver-x11-serviced.service | ||||
EOF | EOF |
@@ -0,0 +1,25 @@ | |||||
cmake | |||||
git | |||||
g++ | |||||
libboost-all-dev | |||||
python-dev | |||||
python-mako | |||||
python-numpy | |||||
python-wxgtk3.0 | |||||
python-sphinx | |||||
python-cheetah | |||||
swig | |||||
libzmq3-dev | |||||
libfftw3-dev | |||||
libgsl-dev | |||||
libcppunit-dev | |||||
libcomedi-dev | |||||
libqt4-opengl-dev | |||||
python-qt4 | |||||
libqwt-dev | |||||
libsdl1.2-dev | |||||
libusb-1.0-0-dev | |||||
python-gtk2 | |||||
python-lxml | |||||
pkg-config | |||||
python-sip-dev |
@@ -0,0 +1,20 @@ | |||||
#!/bin/bash -e | |||||
on_chroot << EOF | |||||
mkdir -p "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
cd "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
if [ ! -d "gnuradio" ]; then | |||||
git clone --recursive https://github.com/gnuradio/gnuradio.git | |||||
fi | |||||
cd gnuradio | |||||
git pull | |||||
git checkout maint-3.7 | |||||
mkdir -p build | |||||
cd build | |||||
rm -rf CMakeCache.txt | |||||
cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/local/bin/python3 ../ | |||||
make -j$(nproc) install | |||||
ldconfig | |||||
EOF |
@@ -1 +0,0 @@ | |||||
gnuradio |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash | #!/bin/bash | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Packages" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Packages" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Packages" | |||||
cd "/home/${FIRST_USER_NAME}/Packages" | |||||
if [ ! -d "SoapySDR" ]; then | if [ ! -d "SoapySDR" ]; then | ||||
git clone https://github.com/pothosware/SoapySDR.git | git clone https://github.com/pothosware/SoapySDR.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash | #!/bin/bash | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Packages" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Packages" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Packages" | |||||
cd "/home/${FIRST_USER_NAME}/Packages" | |||||
if [ ! -d "SoapyRemote" ]; then | if [ ! -d "SoapyRemote" ]; then | ||||
git clone https://github.com/pothosware/SoapyRemote.git | git clone https://github.com/pothosware/SoapyRemote.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -0,0 +1,19 @@ | |||||
#!/bin/bash | |||||
on_chroot << EOF | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Packages" | |||||
cd "/home/${FIRST_USER_NAME}/Packages" | |||||
if [ ! -d "gr-soapy" ]; then | |||||
git clone https://gitlab.com/librespacefoundation/gr-soapy.git | |||||
fi | |||||
cd gr-soapy | |||||
git pull | |||||
mkdir -p build | |||||
cd build | |||||
rm -rf CMakeCache.txt | |||||
cmake ../ | |||||
make -j$(nproc) install | |||||
ldconfig | |||||
EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/LimeSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/LimeSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
cd "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
if [ ! -d "LimeSuite" ]; then | if [ ! -d "LimeSuite" ]; then | ||||
git clone https://github.com/myriadrf/LimeSuite.git | git clone https://github.com/myriadrf/LimeSuite.git | ||||
@@ -13,11 +13,10 @@ git pull | |||||
mkdir -p build | mkdir -p build | ||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake -DENABLE_SPI=ON -DCMAKE_CXX_LINK_FLAGS="$(DCMAKE_CXX_LINK_FLAGS) -latomic" ../ | |||||
make -j$(nproc) | |||||
make install | |||||
cmake -DCMAKE_CXX_LINK_FLAGS="$(DCMAKE_CXX_LINK_FLAGS) -latomic" ../ | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
cd .. | |||||
./udev-rules/install.sh | |||||
cd ../udev-rules | |||||
./install.sh | |||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/LimeSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/LimeSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
cd "/home/${FIRST_USER_NAME}/LimeSDR" | |||||
if [ ! -d "gr-limesdr" ]; then | if [ ! -d "gr-limesdr" ]; then | ||||
git clone https://github.com/myriadrf/gr-limesdr.git | git clone https://github.com/myriadrf/gr-limesdr.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "/home/${FIRST_USER_NAME}/Airspy" | |||||
if [ ! -d "airspyone_host" ]; then | if [ ! -d "airspyone_host" ]; then | ||||
git clone https://github.com/airspy/airspyone_host.git | git clone https://github.com/airspy/airspyone_host.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULES=ON | cmake ../ -DINSTALL_UDEV_RULES=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "/home/${FIRST_USER_NAME}/Airspy" | |||||
if [ ! -d "airspyhf" ]; then | if [ ! -d "airspyhf" ]; then | ||||
git clone https://github.com/airspy/airspyhf.git | git clone https://github.com/airspy/airspyhf.git | ||||
@@ -14,8 +14,7 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULES=ON | cmake ../ -DINSTALL_UDEV_RULES=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF | ||||
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Airspy" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Airspy" | |||||
cd "/home/${FIRST_USER_NAME}/Airspy" | |||||
if [ ! -d "SoapyAirspy" ]; then | if [ ! -d "SoapyAirspy" ]; then | ||||
git clone https://github.com/pothosware/SoapyAirspy.git | git clone https://github.com/pothosware/SoapyAirspy.git | ||||
@@ -14,8 +14,7 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake -DCMAKE_CXX_FLAGS=-latomic ../ | cmake -DCMAKE_CXX_FLAGS=-latomic ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF | ||||
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/RTLSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/RTLSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/RTLSDR" | |||||
cd "/home/${FIRST_USER_NAME}/RTLSDR" | |||||
if [ ! -d "rtl-sdr" ]; then | if [ ! -d "rtl-sdr" ]; then | ||||
git clone https://github.com/osmocom/rtl-sdr | git clone https://github.com/osmocom/rtl-sdr | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON | cmake ../ -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/RTLSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/RTLSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/RTLSDR" | |||||
cd "/home/${FIRST_USER_NAME}/RTLSDR" | |||||
if [ ! -d "SoapyRTLSDR" ]; then | if [ ! -d "SoapyRTLSDR" ]; then | ||||
git clone https://github.com/pothosware/SoapyRTLSDR.git | git clone https://github.com/pothosware/SoapyRTLSDR.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake -DCMAKE_CXX_FLAGS=-latomic ../ | cmake -DCMAKE_CXX_FLAGS=-latomic ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
if [ ! -d "libiio" ]; then | if [ ! -d "libiio" ]; then | ||||
git clone https://github.com/analogdevicesinc/libiio | git clone https://github.com/analogdevicesinc/libiio | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULE=ON | cmake ../ -DINSTALL_UDEV_RULE=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
if [ ! -d "libad9361-iio" ]; then | if [ ! -d "libad9361-iio" ]; then | ||||
git clone https://github.com/analogdevicesinc/libad9361-iio | git clone https://github.com/analogdevicesinc/libad9361-iio | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULE=ON | cmake ../ -DINSTALL_UDEV_RULE=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
if [ ! -d "gr-iio" ]; then | if [ ! -d "gr-iio" ]; then | ||||
git clone https://github.com/analogdevicesinc/gr-iio | git clone https://github.com/analogdevicesinc/gr-iio | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ -DINSTALL_UDEV_RULE=ON | cmake ../ -DINSTALL_UDEV_RULE=ON | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
cd "/home/${FIRST_USER_NAME}/PlutoSDR" | |||||
if [ ! -d "SoapyPlutoSDR" ]; then | if [ ! -d "SoapyPlutoSDR" ]; then | ||||
git clone https://github.com/pothosware/SoapyPlutoSDR.git | git clone https://github.com/pothosware/SoapyPlutoSDR.git | ||||
@@ -14,7 +14,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake -DCMAKE_CXX_FLAGS=-latomic ../ | cmake -DCMAKE_CXX_FLAGS=-latomic ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "cm256cc" ]; then | if [ ! -d "cm256cc" ]; then | ||||
git clone https://github.com/f4exb/cm256cc.git | git clone https://github.com/f4exb/cm256cc.git | ||||
@@ -15,7 +15,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "mbelib" ]; then | if [ ! -d "mbelib" ]; then | ||||
git clone https://github.com/szechyjs/mbelib.git | git clone https://github.com/szechyjs/mbelib.git | ||||
@@ -15,7 +15,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "serialDV" ]; then | if [ ! -d "serialDV" ]; then | ||||
git clone https://github.com/f4exb/serialDV.git | git clone https://github.com/f4exb/serialDV.git | ||||
@@ -15,7 +15,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "dsdcc" ]; then | if [ ! -d "dsdcc" ]; then | ||||
git clone https://github.com/f4exb/dsdcc.git | git clone https://github.com/f4exb/dsdcc.git | ||||
@@ -15,7 +15,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake -DUSE_MBELIB=ON ../ | cmake -DUSE_MBELIB=ON ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -1,8 +1,8 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
on_chroot << EOF | on_chroot << EOF | ||||
mkdir -p "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
cd "${ROOTFS_DIR}/home/${FIRST_USER_NAME}/Software" | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "codec2" ]; then | if [ ! -d "codec2" ]; then | ||||
git clone https://github.com/drowe67/codec2.git | git clone https://github.com/drowe67/codec2.git | ||||
@@ -15,7 +15,6 @@ mkdir -p build | |||||
cd build | cd build | ||||
rm -rf CMakeCache.txt | rm -rf CMakeCache.txt | ||||
cmake ../ | cmake ../ | ||||
make -j$(nproc) | |||||
make install | |||||
make -j$(nproc) install | |||||
ldconfig | ldconfig | ||||
EOF | EOF |
@@ -0,0 +1,19 @@ | |||||
#!/bin/bash -e | |||||
on_chroot << EOF | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "sdrangel" ]; then | |||||
git clone https://github.com/f4exb/sdrangel.git | |||||
fi | |||||
cd sdrangel | |||||
git pull | |||||
mkdir -p build | |||||
cd build | |||||
rm -rf CMakeCache.txt | |||||
cmake ../ | |||||
make -j$(nproc) install | |||||
ldconfig | |||||
EOF |
@@ -0,0 +1,25 @@ | |||||
git | |||||
cmake | |||||
g++ | |||||
pkg-config | |||||
autoconf | |||||
automake | |||||
libtool | |||||
libfftw3-dev | |||||
libusb-1.0-0-dev | |||||
libusb-dev | |||||
qt5-default | |||||
qtbase5-dev | |||||
qtchooser | |||||
libqt5multimedia5-plugins | |||||
qtmultimedia5-dev | |||||
libqt5websockets5-dev | |||||
qttools5-dev | |||||
qttools5-dev-tools | |||||
libqt5opengl5-dev | |||||
qtbase5-dev | |||||
libboost-all-dev | |||||
libasound2-dev | |||||
pulseaudio | |||||
libopencv-dev | |||||
libxml2-dev |
@@ -0,0 +1,19 @@ | |||||
#!/bin/bash -e | |||||
on_chroot << EOF | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "gqrx" ]; then | |||||
git clone https://github.com/csete/gqrx.git | |||||
fi | |||||
cd gqrx | |||||
git pull | |||||
mkdir -p build | |||||
cd build | |||||
rm -rf CMakeCache.txt | |||||
cmake ../ | |||||
make -j$(nproc) install | |||||
ldconfig | |||||
EOF |
@@ -0,0 +1,20 @@ | |||||
#!/bin/bash -e | |||||
on_chroot << EOF | |||||
mkdir -p "/home/${FIRST_USER_NAME}/Software" | |||||
cd "/home/${FIRST_USER_NAME}/Software" | |||||
if [ ! -d "gr-osmosdr" ]; then | |||||
git clone git://git.osmocom.org/gr-osmosdr | |||||
fi | |||||
cd gr-osmosdr | |||||
git pull | |||||
git checkout gr3.7 | |||||
mkdir -p build | |||||
cd build | |||||
rm -rf CMakeCache.txt | |||||
cmake ../ | |||||
make -j$(nproc) install | |||||
ldconfig | |||||
EOF |