選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

17 行
318 B

  1. #!/bin/bash -e
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/PlutoSDR"
  4. cd "/home/${FIRST_USER_NAME}/PlutoSDR"
  5. if [ ! -d "gr-iio" ]; then
  6. git clone https://github.com/analogdevicesinc/gr-iio
  7. fi
  8. cd gr-iio
  9. mkdir -p build
  10. cd build
  11. cmake ../ -DINSTALL_UDEV_RULE=ON
  12. make -j$(nproc) install
  13. ldconfig
  14. EOF