No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 4 años
hace 4 años
hace 4 años
hace 4 años
1234567891011121314151617181920
  1. #!/bin/bash -e
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Radios"
  4. cd "/home/${FIRST_USER_NAME}/PiSDR/Radios"
  5. if [ ! -d "airspyhf" ]; then
  6. git clone https://github.com/airspy/airspyhf.git
  7. fi
  8. cd airspyhf
  9. git pull
  10. mkdir -p build
  11. cd build
  12. cmake ../ -DINSTALL_UDEV_RULES=ON
  13. make -j$(nproc) install
  14. ldconfig
  15. EOF