Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
KM4ACK 929918c921 improve libhamlib conflict resolution 2023-02-23 14:21:48 -06:00
KM4ACK 9a8eed66e5 improve libhamlib conflict resolution 2023-02-23 14:21:37 -06:00
KM4ACK 51f82d634b update 2023-02-23 14:21:09 -06:00
3 zmienionych plików z 13 dodań i 5 usunięć

Wyświetl plik

@ -658,9 +658,12 @@ rm ${BASE} ${ADDITIONAL} ${UTILITY} ${FLSUITE} >/dev/null 2>&1
rm -rf ${DIR} >/dev/null 2>&1
sudo apt -y autoremove > /dev/null 2>&1
#remove libham (rigctl) installed from apt
#remove libham (rigctl) library installed from apt
#since it conflicts with hamlib installed from source
sudo apt purge -y libhamlib4
#sudo apt purge -y libhamlib4 (old way)
#new way will leave libhamlib4 installed and just remove the library that conflicts
sudo rm /lib/arm-linux-gnueabihf/libhamlib*
sudo ldconfig
#restore crontab
crontab ${TEMPCRON}

Wyświetl plik

@ -1,5 +1,6 @@
version=3.3.2
version=3.3.3
3.3.3 Update the way libhamlib (rigctl) conflict is resolved
3.3.2 Fix WSJTX not installing - Thanks Michael Shriver!
Fix Chirp not installing
Chirp update check changed. See notes in app-check script.

8
update
Wyświetl plik

@ -658,9 +658,13 @@ bash ${HOME}/pi-build/menu-update
#Remove temp files
rm ${BASE} ${ADDITIONAL} ${UTILITY} ${FLSUITE} >/dev/null 2>&1
#remove libham (rigctl) installed from apt
#remove libham (rigctl) library installed from apt
#since it conflicts with hamlib installed from source
sudo apt purge -y libhamlib4
#sudo apt purge -y libhamlib4 (old way)
#new way will leave libhamlib4 installed and just remove the library that conflicts
sudo rm /lib/arm-linux-gnueabihf/libhamlib*
sudo ldconfig
#restore crontab
crontab ${TEMPCRON}