3 コミット

作成者 SHA1 メッセージ 日付
  Luigi F. Cruz ee7f34b35a Add development preview of CyberEther. 7ヶ月前
  Luigi F. Cruz 78359ef5db Remove FoxTelem package. 7ヶ月前
  Luigi F. Cruz 79fa0aa064 Remove unnecessary packages. 7ヶ月前
5個のファイルの変更26行の追加16行の削除
分割表示
  1. +0
    -1
      README.md
  2. +0
    -2
      stage4/00-install-packages/00-packages
  3. +12
    -0
      stage4/32-pisdr-cyberether/00-packages
  4. +14
    -0
      stage4/32-pisdr-cyberether/00-run.sh
  5. +0
    -13
      stage4/32-pisdr-foxtelem/00-run.sh

+ 0
- 1
README.md ファイルの表示

@@ -25,7 +25,6 @@ List of pre-installed software:
- [hamlib](https://hamlib.github.io/)
- [VaporTrail](https://github.com/inguardians/VaporTrail)
- [Universal Radio Hacker](https://github.com/jopohl/urh)
- [FoxTelem](https://github.com/ac2cz/FoxTelem)
- [Quisk](http://james.ahlstrom.name/quisk/)
- [0xCoto/VIRGO](https://github.com/0xCoto/VIRGO)
- [0xCoto/CygnusRFI](https://github.com/0xCoto/CygnusRFI)


+ 0
- 2
stage4/00-install-packages/00-packages ファイルの表示

@@ -17,5 +17,3 @@ pprompt
piwiz
rp-prefapps
ffmpeg
vlc
rpi-imager

+ 12
- 0
stage4/32-pisdr-cyberether/00-packages ファイルの表示

@@ -0,0 +1,12 @@
git
build-essential
cmake
pkg-config
ninja-build
meson
mesa-vulkan-drivers
libvulkan-dev
spirv-cross
glslang-tools
libglfw3-dev
libfftw3-dev

+ 14
- 0
stage4/32-pisdr-cyberether/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 "CyberEther" ]; then
git clone --branch development --depth 1 https://github.com/luigifcruz/CyberEther.git
cd CyberEther
meson -Dbuildtype=debugoptimized build
cd build
ninja
fi
EOF

+ 0
- 13
stage4/32-pisdr-foxtelem/00-run.sh ファイルの表示

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

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

if [ ! -d "FoxTelem" ]; then
wget http://amsat.us/FoxTelem/linux/FoxTelem_1.12z3_linux.tar.gz
tar -xvzf FoxTelem_1.12z3_linux.tar.gz
mv FoxTelem_1.12z3_linux FoxTelem
rm FoxTelem_1.12z3_linux.tar.gz
fi
EOF

読み込み中…
キャンセル
保存