3 Commits

Author SHA1 Message Date
  Luigi F. Cruz ee7f34b35a Add development preview of CyberEther. 6 months ago
  Luigi F. Cruz 78359ef5db Remove FoxTelem package. 6 months ago
  Luigi F. Cruz 79fa0aa064 Remove unnecessary packages. 6 months ago
5 changed files with 26 additions and 16 deletions
Split View
  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 View File

@@ -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 View File

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

+ 12
- 0
stage4/32-pisdr-cyberether/00-packages View File

@@ -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 View File

@@ -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 View File

@@ -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

Loading…
Cancel
Save