소스 검색

add osmo-fl2k support

pull/39/head
Luigi Cruz 4 년 전
부모
커밋
087cdcc67a
2개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      builder/stage4/28-pisdr-osmo-fl2k/00-packages-nr
  2. +19
    -0
      builder/stage4/28-pisdr-osmo-fl2k/00-run.sh

+ 1
- 0
builder/stage4/28-pisdr-osmo-fl2k/00-packages-nr 파일 보기

@@ -0,0 +1 @@
libusb-1.0-0-dev

+ 19
- 0
builder/stage4/28-pisdr-osmo-fl2k/00-run.sh 파일 보기

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

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

if [ ! -d "osmo-fl2k" ]; then
git clone git://git.osmocom.org/osmo-fl2k.git
fi

cd osmo-fl2k
mkdir -p build
cd build
cmake -GNinja -DINSTALL_UDEV_RULES=ON ..
ninja install
ldconfig
cd ..
rm -fr build
EOF

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