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.

00-run.sh 324 B

hace 4 años
123456789101112131415161718
  1. #!/bin/bash -e
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
  4. cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
  5. if [ ! -d "gr-osmosdr" ]; then
  6. git clone git://git.osmocom.org/gr-osmosdr
  7. fi
  8. cd gr-osmosdr
  9. git checkout gr3.7
  10. mkdir -p build
  11. cd build
  12. cmake ../
  13. make -j$(nproc) install
  14. ldconfig
  15. EOF