소스 검색

Add initial module patches.

tags/v7.0.0-alpha
Luigi F. Cruz 8 달 전
부모
커밋
c7ba4293c3
10개의 변경된 파일13개의 추가작업 그리고 9개의 파일을 삭제
  1. +1
    -1
      stage4/05-pisdr-uhd/00-run.sh
  2. +2
    -1
      stage4/10-pisdr-plutosdr/00-packages-nr
  3. +1
    -1
      stage4/10-pisdr-plutosdr/00-run.sh
  4. +1
    -1
      stage4/10-pisdr-plutosdr/01-run.sh
  5. +1
    -1
      stage4/11-pisdr-rtlsdr/00-run.sh
  6. +1
    -1
      stage4/12-pisdr-hackrf/00-run.sh
  7. +1
    -1
      stage4/13-pisdr-gnuradio/00-run.sh
  8. +1
    -1
      stage4/13-pisdr-gnuradio/01-run.sh
  9. +3
    -0
      stage4/14-pisdr-gnuradio-mod/01-run.sh
  10. +1
    -1
      stage4/18-pisdr-sdrangel/05-run.sh

+ 1
- 1
stage4/05-pisdr-uhd/00-run.sh 파일 보기

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

if [ ! -d "uhd" ]; then
git clone --single-branch --branch UHD-3.15.LTS --depth 1 https://github.com/EttusResearch/uhd.git
git clone --single-branch --branch UHD-4.4 --depth 1 https://github.com/EttusResearch/uhd.git
fi

cd uhd/host


+ 2
- 1
stage4/10-pisdr-plutosdr/00-packages-nr 파일 보기

@@ -5,4 +5,5 @@ libcdk5-dev
libaio-dev
libusb-1.0-0-dev
libserialport-dev
libavahi-client-dev
libavahi-client-dev
libzstd-dev

+ 1
- 1
stage4/10-pisdr-plutosdr/00-run.sh 파일 보기

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

if [ ! -d "libiio" ]; then
git clone --depth 1 https://github.com/analogdevicesinc/libiio
git clone --depth 1 --branch libiio-v0 https://github.com/analogdevicesinc/libiio
fi

cd libiio


+ 1
- 1
stage4/10-pisdr-plutosdr/01-run.sh 파일 보기

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

if [ ! -d "libad9361-iio" ]; then
git clone --depth 1 https://github.com/analogdevicesinc/libad9361-iio
git clone --depth 1 --branch v0.3 https://github.com/analogdevicesinc/libad9361-iio
fi

cd libad9361-iio


+ 1
- 1
stage4/11-pisdr-rtlsdr/00-run.sh 파일 보기

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

if [ ! -d "rtl-sdr" ]; then
git clone --depth 1 https://github.com/osmocom/rtl-sdr
git clone --depth 1 https://github.com/rtlsdrblog/rtl-sdr-blog.git
fi

cd rtl-sdr


+ 1
- 1
stage4/12-pisdr-hackrf/00-run.sh 파일 보기

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

if [ ! -d "hackrf" ]; then
git clone https://github.com/mossmann/hackrf.git
git clone --depth 1 https://github.com/mossmann/hackrf.git
fi

cd hackrf/host


+ 1
- 1
stage4/13-pisdr-gnuradio/00-run.sh 파일 보기

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

if [ ! -d "volk" ]; then
git clone --single-branch --branch v2.5.0 --depth 1 --recurse-submodules --shallow-submodules https://github.com/gnuradio/volk.git
git clone --single-branch --branch v3.0.0 --depth 1 --recurse-submodules --shallow-submodules https://github.com/gnuradio/volk.git
fi

cd volk


+ 1
- 1
stage4/13-pisdr-gnuradio/01-run.sh 파일 보기

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

if [ ! -d "gnuradio" ]; then
git clone --single-branch --branch maint-3.9 --depth 1 --recurse-submodules --shallow-submodules https://github.com/gnuradio/gnuradio.git
git clone --single-branch --branch maint-3.10 --depth 1 --recurse-submodules --shallow-submodules https://github.com/gnuradio/gnuradio.git
fi

cd gnuradio


+ 3
- 0
stage4/14-pisdr-gnuradio-mod/01-run.sh 파일 보기

@@ -1,5 +1,8 @@
#!/bin/bash -e

# gr-limesdr doesn't have a stable package for GR3.10
exit

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


+ 1
- 1
stage4/18-pisdr-sdrangel/05-run.sh 파일 보기

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

if [ ! -d "sdrangel" ]; then
git clone --depth 1 --branch v6.5.5 https://github.com/f4exb/sdrangel.git
git clone --depth 1 --branch v7.15.3 https://github.com/f4exb/sdrangel.git
fi

cd sdrangel


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