3 次代码提交

作者 SHA1 备注 提交日期
  Luigi F. Cruz ee7f34b35a Add development preview of CyberEther. 1年前
  Luigi F. Cruz 78359ef5db Remove FoxTelem package. 1年前
  Luigi F. Cruz 79fa0aa064 Remove unnecessary packages. 1年前
共有 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

正在加载...
取消
保存