Add libpcap-dev and move all pkgs into installPackages()

This commit is contained in:
Eric Helgeson 2021-04-05 16:24:51 -05:00
parent 61c7644250
commit 3c5d68a1f4

View File

@ -41,14 +41,13 @@ function initialChecks() {
} }
function installPackages() { function installPackages() {
sudo apt-get update && sudo apt install git libspdlog-dev genisoimage python3 python3-venv nginx libpcap-dev -y sudo apt-get update && sudo apt install git libspdlog-dev libpcap-dev genisoimage python3 python3-venv nginx libpcap-dev -y
} }
# install all dependency packages for RaSCSI Service # install all dependency packages for RaSCSI Service
# compile and install RaSCSI Service # compile and install RaSCSI Service
function installRaScsi() { function installRaScsi() {
installPackages installPackages
sudo apt-get update && sudo apt-get install --yes git libspdlog-dev
cd ~/RASCSI/src/raspberrypi cd ~/RASCSI/src/raspberrypi
make all CONNECT_TYPE=FULLSPEC make all CONNECT_TYPE=FULLSPEC