소스 검색

add universal radio hacker support

pull/39/head
Luigi Cruz 4 년 전
부모
커밋
142ef15f0f
2개의 변경된 파일15개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      builder/stage4/26-pisdr-limesdr-toolbox/00-run.sh
  2. +14
    -0
      builder/stage4/31-pisdr-urh/00-run.sh

+ 1
- 1
builder/stage4/26-pisdr-limesdr-toolbox/00-run.sh 파일 보기

@@ -5,7 +5,7 @@ mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"

if [ ! -d "limesdr_toolbox" ]; then
git clone https://github.com/luigifcruz/limesdr_toolbox.git
git clone https://github.com/emvivre/limesdr_toolbox.git
fi

cd limesdr_toolbox


+ 14
- 0
builder/stage4/31-pisdr-urh/00-run.sh 파일 보기

@@ -0,0 +1,14 @@
#!/bin/bash -e

on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"

if [ ! -d "urh" ]; then
git clone https://github.com/jopohl/urh.git
fi

cd urh
python3 -m pip install --upgrade cython
python3 setup.py install
EOF

불러오는 중...
취소
저장