From 8fbe0ea4f5dd8c4c5f69d26118be405eb12a8ef8 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 23 Feb 2026 13:46:16 -0500 Subject: [PATCH] Implement SSDV installation if not present Add installation steps for SSDV in FUNcube mode. --- install | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install b/install index 0b90e65e..a49022a0 100755 --- a/install +++ b/install @@ -631,6 +631,14 @@ if [ ! -f "/home/pi/fcdctl/fcdctl" ]; then make fcdpp fi +if [ ! -f "/home/pi/ssdv/ssdv" ]; then + cd + echo "Installing SSDV for FUNcube mode" + git clone https://github.com/alanbjohnston/ssdv.git # install ssdv for FUNcube images + cd ssdv + make +fi + cd #echo "Would you like to reboot to complete the installation (y/n)?"