NFC lab fix install

This commit is contained in:
FlUxIuS 2024-06-22 16:36:38 +02:00
parent 1b1681a870
commit 83f15e1374
No known key found for this signature in database
GPG Key ID: E8B96449EE4FA72F
2 changed files with 7 additions and 2 deletions

View File

@ -65,13 +65,15 @@ RUN ./entrypoint.sh grfhss_utils_grmod_install # depends on 'grpdu_utils_grmod_i
RUN ./entrypoint.sh cyberther_soft_install # Enabe OpenCL for better exp
# Installing softwares
RUN ./entrypoint.sh sdrangel_soft_install
#RUN ./entrypoint.sh sdrangel_soft_install
RUN ./entrypoint.sh sdrangel_soft_fromsource_install
RUN ./entrypoint.sh sdrpp_soft_fromsource_install # replace to 'sdrpp_soft_install' if you see bugs
RUN ./entrypoint.sh sigdigger_soft_install
RUN ./entrypoint.sh qsstv_soft_install
RUN ./entrypoint.sh ice9_bluetooth_soft_install
RUN ./entrypoint.sh meshtastic_sdr_soft_install
RUN ./entrypoint.sh gps_sdr_sim_soft_install
RUN ./entrypoint.sh nfclaboratory_soft_install
# Installing extra software
RUN ./entrypoint.sh ml_and_dl_soft_install

View File

@ -211,6 +211,7 @@ function sigdigger_soft_install () {
chmod +x blsd \
./blsd
cd /root
ln -s /sdrtools/blsd-dir/SigDigger/SigDigger /usr/sbin/SigDigger
}
function cyberther_soft_install() {
@ -295,7 +296,7 @@ function ice9_bluetooth_soft_install () {
function nfclaboratory_soft_install () {
goodecho "[+] Installing dependencies for nfc-laboratory"
installfromnet "apt-fast install -y libusb-1.0-0 qt5-default"
installfromnet "apt-fast install -y libusb-1.0-0"
goodecho "[+] Installing nfc-laboratory"
[ -d /root/thirdparty ] || mkdir /root/thirdparty
cd /root/thirdparty
@ -305,6 +306,7 @@ function nfclaboratory_soft_install () {
cp nfc-laboratory/dat/config/nfc-lab.conf /root
[ -d /rftools ] || mkdir /rftools/
cp ./cmake-build-release/src/nfc-app/app-qt/nfc-lab /rftools/
ln -s /rftools/nfc-lab /usr/bin/nfc-lab
}
function retrogram_soapysdr_soft_install () {
@ -316,6 +318,7 @@ function retrogram_soapysdr_soft_install () {
installfromnet "git clone https://github.com/r4d10n/retrogram-soapysdr.git"
cd retrogram-soapysdr
make -j$(nproc)
ln -s /sdrtools/retrogram-soapysdr/retrogram-soapysdr /usr/bin/retrogram-soapysdr
}
function gps_sdr_sim_soft_install () {