From 019127f78416d7dd6e27040c0b383a7158a84440 Mon Sep 17 00:00:00 2001 From: tmecha Date: Tue, 13 Aug 2019 18:31:03 -0700 Subject: [PATCH] Update Vagrantfile "sudo apt-get install linux-image-extra-$(uname -r)" was throwing errors. Turns out that: linux-image-extra-* packages have been renamed linux-modules-extra-* --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 05f0418..f8197ca 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,7 +23,7 @@ Vagrant.configure(2) do |config| autoconf automake libtool gcc g++ gperf \ flex bison texinfo gawk ncurses-dev libexpat-dev \ python sed libreadline-dev libffi-dev pkg-config \ - help2man python-dev python-serial wget linux-image-extra-$(uname -r) + help2man python-dev python-serial wget linux-modules-extra-$(uname -r) echo "Installing Espressif ESP32 toolchain..." cd ~ wget https://dl.espressif.com/dl/xtensa-esp32-elf-linux64-1.22.0-61-gab8375a-5.2.0.tar.gz 2> /dev/null