This website works better with JavaScript.
Home
Help
Sign In
hms
/
pisdr-rpi-image
mirror of
https://github.com/luigifreitas/pisdr-image
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
14
Wiki
Activity
Browse Source
add dump1090 support
pull/39/head
Luigi Cruz
4 years ago
parent
3678ad62d3
commit
03ff1290f2
1 changed files
with
14 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+14
-0
builder/stage4/32-pisdr-dump1090/00-run.sh
+ 14
- 0
builder/stage4/32-pisdr-dump1090/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 "dump1090" ]; then
git clone --depth 1 https://github.com/antirez/dump1090.git
fi
cd dump1090
make -j$(nproc)
cp dump1090 /usr/bin/
EOF
Write
Preview
Loading…
Cancel
Save