Skip to content

Commit

Permalink
update tested versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BenGardiner authored and bastibl committed Apr 13, 2022
1 parent 276dd39 commit bdbb9ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A customizable, programmatically generated VM and live environment for GNU Radio
## Main Features

- OVA VM appliance can be imported in all main virtualization solutions or `dd`ed on a USB drive.
- Based on Ubuntu 18.04 w/ GNOME 3.
- Based on Ubuntu 20.04.1 w/ GNOME 3.
- Two step build process: first create a base image, then extend it with SDR stuff.
- Easy to brand for your own courses/workshops. Just replace the wallpaper in the `assets` folder, for example.
- Software: GNU Radio, GQRX, gr-ieee-***, ...
Expand Down
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
set -eu

echo ""
echo "Checking for wget (tested with 1.17.1)"
echo "Checking for wget (tested with 1.21)"
command -v wget >/dev/null 2>&1 || ( echo "wget not found."; exit 1 )
wget --version

echo ""
echo "Checking for HashiCorp Packer (tested with 1.2.1)"
echo "Checking for HashiCorp Packer (tested with 1.6.6)"
command -v packer >/dev/null 2>&1 || ( echo "packer not found."; exit 1 )
packer --version || true

echo ""
echo "Checking for Oracle VM VirtualBox (tested with 5.2.8)"
echo "Checking for Oracle VM VirtualBox (tested with 6.1.32_Ubuntur149290)"
command -v VBoxManage >/dev/null 2>&1 || ( echo "VBoxManage not found."; exit 1 )
VBoxManage --version

echo ""
echo "Checking for Oracle VM VirtualBox Extension Pack (tested with 5.2.8)"
echo "Checking for Oracle VM VirtualBox Extension Pack (tested with 6.1.32_Ubuntur149290)"
VBoxManage list extpacks | grep "VirtualBox Extension Pack" || ( echo "VirtualBox Extension Pack not installed."; exit 1 )

echo ""
Expand Down

0 comments on commit bdbb9ce

Please sign in to comment.